Back to home page

sPhenix code displayed by LXR

 
 

    


File indexing completed on 2025-08-05 08:15:37

0001 AUTOMAKE_OPTIONS = foreign
0002 
0003 AM_CPPFLAGS = \
0004   -I$(includedir) \
0005   -isystem$(OFFLINE_MAIN)/include \
0006   -isystem$(ROOTSYS)/include
0007 
0008 AM_LDFLAGS = \
0009   -L$(libdir) \
0010   -L$(OFFLINE_MAIN)/lib 
0011 
0012 pkginclude_HEADERS = \
0013   fillSpaceChargeMaps.h \
0014   Shifter.h
0015 
0016 lib_LTLIBRARIES = \
0017   libfillSpaceChargeMaps.la
0018 
0019 libfillSpaceChargeMaps_la_SOURCES = \
0020   fillSpaceChargeMaps.cc \
0021   Shifter.cc
0022 
0023 libfillSpaceChargeMaps_la_LIBADD = \
0024   -lfun4all \
0025   -lphool \
0026   -lphg4hit \
0027   -lg4detectors \
0028   -lg4testbench \
0029   -lg4tpc \
0030   -lSubsysReco
0031 
0032 BUILT_SOURCES = testexternals.cc
0033 
0034 noinst_PROGRAMS = \
0035   testexternals
0036 
0037 testexternals_SOURCES = testexternals.cc
0038 testexternals_LDADD   = libfillSpaceChargeMaps.la
0039 
0040 testexternals.cc:
0041         echo "//*** this is a generated file. Do not commit, do not edit" > $@
0042         echo "int main()" >> $@
0043         echo "{" >> $@
0044         echo "  return 0;" >> $@
0045         echo "}" >> $@
0046 
0047 clean-local:
0048         rm -f $(BUILT_SOURCES)