File indexing completed on 2025-12-16 09:18:08
0001 AUTOMAKE_OPTIONS = foreign
0002
0003 AM_CPPFLAGS = \
0004 -I$(includedir) \
0005 -I$(OFFLINE_MAIN)/include \
0006 -isystem$(ROOTSYS)/include
0007
0008 AM_LDFLAGS = \
0009 -L$(libdir) \
0010 -L$(OFFLINE_MAIN)/lib \
0011 -L$(OFFLINE_MAIN)/lib64
0012
0013 pkginclude_HEADERS = \
0014 tutorial.h \
0015 CaloOnly.h \
0016 caloHistGen.h \
0017 TruthToSvtxTrack.h
0018
0019 lib_LTLIBRARIES = \
0020 libtutorial.la
0021
0022 libtutorial_la_SOURCES = \
0023 tutorial.cc \
0024 CaloOnly.cc \
0025 caloHistGen.cc \
0026 TruthToSvtxTrack.cc
0027
0028 libtutorial_la_LIBADD = \
0029 -lphool \
0030 -lSubsysReco \
0031 -lHepMC \
0032 -lCLHEP \
0033 -ltrack_io \
0034 -ltrack \
0035 -lcalo_io \
0036 -lfun4all \
0037 -lg4detectors \
0038 -lg4detectors_io \
0039 -lcdbobjects \
0040 -lphg4hit \
0041 -lg4eval
0042
0043 BUILT_SOURCES = testexternals.cc
0044
0045 noinst_PROGRAMS = \
0046 testexternals
0047
0048 testexternals_SOURCES = testexternals.cc
0049 testexternals_LDADD = libtutorial.la
0050
0051 testexternals.cc:
0052 echo "//*** this is a generated file. Do not commit, do not edit" > $@
0053 echo "int main()" >> $@
0054 echo "{" >> $@
0055 echo " return 0;" >> $@
0056 echo "}" >> $@
0057
0058 clean-local:
0059 rm -f $(BUILT_SOURCES)