Back to home page

sPhenix code displayed by LXR

 
 

    


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

0001 ##############################################
0002 # please add new classes in alphabetical order
0003 
0004 AUTOMAKE_OPTIONS = foreign
0005 
0006 # List of shared libraries to produce
0007 lib_LTLIBRARIES = \
0008   libg4calo.la
0009 
0010 AM_CXXFLAGS = `geant4-config --cflags`
0011 
0012 AM_CPPFLAGS = \
0013   -I$(includedir) \
0014   -isystem$(OFFLINE_MAIN)/include \
0015   -isystem$(ROOTSYS)/include
0016 
0017 pkginclude_HEADERS = \
0018   g4hitshift.h \
0019   g4hitshifthcal.h \
0020   HcalRawTowerBuilder.h \
0021   RawTowerBuilder.h \
0022   RawTowerBuilderByHitIndex.h \
0023   RawTowerDigitizer.h 
0024 
0025 libg4calo_la_SOURCES = \
0026   g4hitshift.cc \
0027   g4hitshifthcal.cc \
0028   HcalRawTowerBuilder.cc \
0029   RawTowerBuilder.cc \
0030   RawTowerBuilderByHitIndex.cc \
0031   RawTowerDigitizer.cc 
0032 
0033 libg4calo_la_LDFLAGS = \
0034   -L$(libdir) \
0035   -L$(OFFLINE_MAIN)/lib
0036 
0037 libg4calo_la_LIBADD = \
0038   -lcalo_io \
0039   -lcdbobjects \
0040   -lfun4all \
0041   -lg4detectors_io \
0042   -lg4testbench \
0043   -lgsl \
0044   -lgslcblas \
0045   -lphool \
0046   -lphg4hit \
0047   -lphparameter \
0048   -lSubsysReco
0049 
0050 ################################################
0051 # linking tests
0052 
0053 noinst_PROGRAMS = \
0054   testexternals_g4calo
0055 
0056 BUILT_SOURCES = testexternals.cc
0057 
0058 testexternals_g4calo_SOURCES = testexternals.cc
0059 testexternals_g4calo_LDADD = libg4calo.la
0060 
0061 testexternals.cc:
0062         echo "//*** this is a generated file. Do not commit, do not edit" > $@
0063         echo "int main()" >> $@
0064         echo "{" >> $@
0065         echo "  return 0;" >> $@
0066         echo "}" >> $@
0067 
0068 ##############################################
0069 # please add new classes in alphabetical order
0070 
0071 clean-local:
0072         rm -f $(BUILT_SOURCES)