File indexing completed on 2025-08-05 08:17:40
0001 AUTOMAKE_OPTIONS = foreign
0002
0003 lib_LTLIBRARIES = \
0004 libg4decayer.la
0005
0006
0007
0008
0009
0010
0011
0012
0013 AM_CXXFLAGS=`geant4-config --cflags`
0014
0015 AM_CPPFLAGS = \
0016 -I$(includedir) \
0017 -isystem$(OFFLINE_MAIN)/include \
0018 -DEVTGEN_HEPMC3
0019
0020 libg4decayer_la_LDFLAGS = \
0021 -L$(libdir) \
0022 -L$(OFFLINE_MAIN)/lib \
0023 -L$(OPT_SPHENIX)/lib \
0024 -L$(OFFLINE_MAIN)/lib64 \
0025 `geant4-config --libs`
0026
0027 libg4decayer_la_LIBADD = \
0028 -lPythia6 \
0029 -lEvtGen \
0030 -lEvtGenExternal \
0031 -lHepMC3 \
0032 -lgsl \
0033 -lgslcblas \
0034 -lfun4all
0035
0036
0037 libg4decayer_la_SOURCES = \
0038 pythia6_common_address.c \
0039 Pythia6.cc \
0040 G4Pythia6Decayer.cc \
0041 G4Pythia6DecayerMessenger.cc \
0042 P6DExtDecayerPhysics.cc \
0043 G4EvtGenDecayer.cc \
0044 EvtGenExtDecayerPhysics.cc \
0045 PHEvtGenRandomEngine.cc
0046
0047 pkginclude_HEADERS = \
0048 EDecayType.hh \
0049 P6DExtDecayerPhysics.hh \
0050 G4EvtGenDecayer.hh \
0051 EvtGenExtDecayerPhysics.hh \
0052 PHEvtGenRandomEngine.hh
0053
0054
0055
0056
0057 BUILT_SOURCES = \
0058 testexternals.cc
0059
0060 noinst_PROGRAMS = \
0061 testexternals
0062
0063 testexternals_SOURCES = \
0064 testexternals.cc
0065
0066 testexternals_LDADD = \
0067 libg4decayer.la
0068
0069 testexternals.cc:
0070 echo "//*** this is a generated file. Do not commit, do not edit" > $@
0071 echo "int main()" >> $@
0072 echo "{" >> $@
0073 echo " return 0;" >> $@
0074 echo "}" >> $@
0075
0076 clean-local:
0077 rm -f $(BUILT_SOURCES)