Back to home page

sPhenix code displayed by LXR

 
 

    


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

0001 ##############################################
0002 # please add new classes/includes/everything else in alphabetical order
0003 
0004 AUTOMAKE_OPTIONS = foreign
0005 
0006 lib_LTLIBRARIES = \
0007   libCalib.la
0008 
0009 AM_CPPFLAGS = \
0010   -I$(includedir) \
0011   -isystem$(OFFLINE_MAIN)/include \
0012   -isystem$(G4_MAIN)/include \
0013   -isystem$(ROOTSYS)/include
0014 
0015 AM_LDFLAGS = \
0016   -L$(libdir) \
0017   -L$(OFFLINE_MAIN)/lib
0018 
0019 libCalib_la_LIBADD = \
0020   -lphool \
0021   -lg4detectors \
0022   -lphg4hit \
0023   -lSubsysReco \
0024   -lcalo_io
0025 
0026 pkginclude_HEADERS = \
0027   Calib.h
0028 
0029 libCalib_la_SOURCES = \
0030   Calib.cc
0031 
0032 ################################################
0033 # linking tests
0034 
0035 noinst_PROGRAMS = \
0036   testexternals
0037 
0038 BUILT_SOURCES = testexternals.cc
0039 
0040 testexternals_SOURCES = testexternals.cc
0041 testexternals_LDADD = libCalib.la
0042 
0043 testexternals.cc:
0044         echo "//*** this is a generated file. Do not commit, do not edit" > $@
0045         echo "int main()" >> $@
0046         echo "{" >> $@
0047         echo "  return 0;" >> $@
0048         echo "}" >> $@
0049 
0050 clean-local:
0051         rm -f $(BUILT_SOURCES)