File indexing completed on 2025-08-06 08:18:45
0001 AUTOMAKE_OPTIONS = foreign
0002
0003 AM_CPPFLAGS = \
0004 -I$(includedir) \
0005 -isystem$(OFFLINE_MAIN)/include \
0006 -isystem`root-config --incdir`\
0007 -DHomogeneousField
0008
0009 lib_LTLIBRARIES = \
0010 libsimqa_modules.la \
0011 libsimqa_kfparticle.la
0012
0013 AM_LDFLAGS = \
0014 -L$(libdir) \
0015 -L$(OFFLINE_MAIN)/lib
0016
0017 libsimqa_kfparticle_la_LIBADD = \
0018 libsimqa_modules.la \
0019 -lkfparticle_sphenix
0020
0021 libsimqa_modules_la_LIBADD = \
0022 -lcalo_io \
0023 -lfun4all \
0024 -lg4detectors_io \
0025 -lg4eval \
0026 -ljetbase \
0027 -lphg4hit \
0028 -ltrackbase_historic_io \
0029 -ltpc \
0030 -lCLHEP \
0031 -ldecayfinder_io \
0032 -lphhepmc \
0033 -lqautils
0034
0035 pkginclude_HEADERS = \
0036 QAG4SimulationCalorimeter.h \
0037 QAG4SimulationCalorimeterSum.h \
0038 QAG4SimulationDistortions.h \
0039 QAG4SimulationIntt.h \
0040 QAG4SimulationJet.h \
0041 QAG4SimulationKFParticle.h \
0042 QAG4SimulationMicromegas.h \
0043 QAG4SimulationMvtx.h \
0044 QAG4SimulationTpc.h \
0045 QAG4SimulationTracking.h \
0046 QAG4SimulationVertex.h \
0047 QAG4SimulationUpsilon.h \
0048 QAG4SimulationTruthDecay.h \
0049 QAG4Decayer.h
0050
0051 libsimqa_kfparticle_la_SOURCES = \
0052 QAG4SimulationKFParticle.cc
0053
0054 libsimqa_modules_la_SOURCES = \
0055 QAG4SimulationCalorimeter.cc \
0056 QAG4SimulationCalorimeterSum.cc \
0057 QAG4SimulationDistortions.cc \
0058 QAG4SimulationIntt.cc \
0059 QAG4SimulationJet.cc \
0060 QAG4SimulationMicromegas.cc \
0061 QAG4SimulationMvtx.cc \
0062 QAG4SimulationTpc.cc \
0063 QAG4SimulationTracking.cc \
0064 QAG4SimulationVertex.cc \
0065 QAG4SimulationUpsilon.cc \
0066 QAG4SimulationTruthDecay.cc \
0067 QAG4Decayer.cc
0068
0069
0070
0071
0072 noinst_PROGRAMS = \
0073 testexternals_qa \
0074 testexternals_simqa_kfparticle
0075
0076 BUILT_SOURCES = \
0077 testexternals.cc
0078
0079 testexternals_qa_SOURCES = \
0080 testexternals.cc
0081
0082 testexternals_qa_LDADD = \
0083 libsimqa_modules.la
0084
0085 testexternals_simqa_kfparticle_SOURCES = \
0086 testexternals.cc
0087
0088 testexternals_simqa_kfparticle_LDADD = \
0089 libsimqa_modules.la
0090
0091 testexternals.cc:
0092 echo "//*** this is a generated file. Do not commit, do not edit" > $@
0093 echo "int main()" >> $@
0094 echo "{" >> $@
0095 echo " return 0;" >> $@
0096 echo "}" >> $@
0097
0098 clean-local:
0099 rm -f $(BUILT_SOURCES)