File indexing completed on 2025-08-05 08:16:00
0001 AUTOMAKE_OPTIONS = foreign
0002
0003 AM_CPPFLAGS = \
0004 -I$(includedir) \
0005 -isystem$(OFFLINE_MAIN)/include \
0006 -isystem`root-config --incdir`
0007
0008 lib_LTLIBRARIES = libPHPythia8.la
0009
0010 pkginclude_HEADERS = \
0011 PHPythia8.h \
0012 PHPy8GenTrigger.h \
0013 PHPy8ParticleTrigger.h \
0014 PHPy8JetTrigger.h
0015
0016 libPHPythia8_la_LDFLAGS = \
0017 -L$(libdir) \
0018 -L$(OFFLINE_MAIN)/lib \
0019 `root-config --libs` \
0020 `fastjet-config --libs`
0021
0022 libPHPythia8_la_LIBADD = \
0023 -lSubsysReco \
0024 -lpythia8 \
0025 -lphhepmc \
0026 -lHepMC
0027
0028 libPHPythia8_la_SOURCES = \
0029 PHPythia8.cc \
0030 PHPy8GenTrigger.cc \
0031 PHPy8ParticleTrigger.cc \
0032 PHPy8JetTrigger.cc
0033
0034 BUILT_SOURCES = \
0035 testexternals.cc
0036
0037 testexternals_SOURCES = \
0038 testexternals.cc
0039
0040 noinst_PROGRAMS = \
0041 testexternals
0042
0043 testexternals_LDADD = \
0044 libPHPythia8.la
0045
0046 testexternals.cc:
0047 echo "//*** this is a generated file. Do not commit, do not edit" > $@
0048 echo "int main()" >> $@
0049 echo "{" >> $@
0050 echo " return 0;" >> $@
0051 echo "}" >> $@
0052
0053 clean-local:
0054 rm -f $(BUILT_SOURCES)