File indexing completed on 2025-08-03 08:12:33
0001 AUTOMAKE_OPTIONS = foreign
0002
0003 AM_CPPFLAGS = -I$(includedir) -I$(OFFLINE_MAIN)/include -I`root-config --incdir`
0004
0005 AM_CXXFLAGS = -Werror
0006
0007 lib_LTLIBRARIES = libPHPythia6.la
0008
0009 pkginclude_HEADERS = \
0010 PHPythia6.h \
0011 PHPy6GenTrigger.h \
0012 PHPy6ForwardElectronTrig.h \
0013 PHPy6ParticleTrigger.h
0014
0015 libPHPythia6_la_LDFLAGS = \
0016 -L$(libdir) \
0017 -L$(OFFLINE_MAIN)/lib \
0018 -L$(OPT_SPHENIX)/lib \
0019 `root-config --libs`
0020
0021 libPHPythia6_la_LIBADD = \
0022 -lphool -lSubsysReco -lfun4all -lPythia6 -lEG -lEGPythia6 \
0023 -lphhepmc -lHepMC -lHepMCfio -lgsl -lgslcblas -lfastjet \
0024 -lCGAL
0025
0026
0027 libPHPythia6_la_SOURCES = \
0028 PHPythia6.C \
0029 PHPythia6_Dict.C \
0030 PHPy6GenTrigger.C \
0031 PHPy6GenTrigger.h \
0032 PHPy6JetTrigger.C \
0033 PHPy6JetTrigger.h \
0034 PHPy6ForwardElectronTrig.C \
0035 PHPy6ForwardElectronTrig.h \
0036 PHPy6ParticleTrigger.C \
0037 PHPy6ParticleTrigger.h
0038
0039
0040 BUILT_SOURCES = \
0041 testexternals.C
0042
0043 noinst_PROGRAMS = \
0044 testexternals
0045
0046 testexternals_LDADD = \
0047 libPHPythia6.la
0048
0049 testexternals.C:
0050 echo "//*** this is a generated file. Do not commit, do not edit" > $@
0051 echo "int main()" >> $@
0052 echo "{" >> $@
0053 echo " return 0;" >> $@
0054 echo "}" >> $@
0055
0056 PHPythia6_Dict.C: \
0057 PHPythia6.h \
0058 PHPy6GenTrigger.h \
0059 PHPy6JetTrigger.h \
0060 PHPy6ForwardElectronTrig.h \
0061 PHPy6ParticleTrigger.h \
0062 PHPythia6LinkDef.h
0063 rootcint -f $@ @CINTDEFS@ -c $(DEFAULT_INCLUDES) $(AM_CPPFLAGS) $^
0064
0065 clean-local:
0066 rm -f *Dict*
0067 rm -f testexternals*
0068