Back to home page

sPhenix code displayed by LXR

 
 

    


File indexing completed on 2025-08-05 08:17:53

0001 AUTOMAKE_OPTIONS = foreign
0002 
0003 AM_CXXFLAGS = `geant4-config --cflags`
0004 
0005 AM_CPPFLAGS = \
0006   -I$(includedir) \
0007   -I$(OFFLINE_MAIN)/include \
0008   -isystem$(ROOTSYS)/include
0009 
0010 AM_LDFLAGS = \
0011   -L$(libdir) \
0012   -L$(OFFLINE_MAIN)/lib
0013 
0014 pkginclude_HEADERS = \
0015   PHG4EPDDetector.h \
0016   PHG4EPDSteppingAction.h \
0017   PHG4EPDSubsystem.h \
0018   PHG4EPDModuleReco.h 
0019 
0020 lib_LTLIBRARIES = \
0021   libg4epd.la
0022 
0023 libg4epd_la_SOURCES = \
0024   PHG4EPDDetector.cc \
0025   PHG4EPDDisplayAction.cc \
0026   PHG4EPDSteppingAction.cc \
0027   PHG4EPDSubsystem.cc \
0028   PHG4EPDModuleReco.cc
0029 
0030 libg4epd_la_LIBADD = \
0031   -lcalo_io \
0032   -lepd_io \
0033   -lg4detectors \
0034   -lphg4hit \
0035   -lSubsysReco \
0036   -lphool
0037 
0038 # leave generic name for test executable, they stay in the local build area
0039 # this preserves a similar "look and feel"
0040 BUILT_SOURCES = testexternals.cc
0041 
0042 noinst_PROGRAMS = \
0043   testexternals
0044 
0045 testexternals_SOURCES = testexternals.cc
0046 testexternals_LDADD = libg4epd.la
0047 
0048 testexternals.cc:
0049         echo "//*** this is a generated file. Do not commit, do not edit" > $@
0050         echo "int main()" >> $@
0051         echo "{" >> $@
0052         echo "  return 0;" >> $@
0053         echo "}" >> $@
0054 
0055 clean-local:
0056         rm -f $(BUILT_SOURCES)