Back to home page

sPhenix code displayed by LXR

 
 

    


File indexing completed on 2025-08-03 08:15:32

0001 AUTOMAKE_OPTIONS = foreign
0002 
0003 lib_LTLIBRARIES = \
0004     libcaloana.la
0005 
0006 AM_LDFLAGS = \
0007   -L$(libdir) \
0008   -L$(OFFLINE_MAIN)/lib
0009 
0010 AM_CPPFLAGS = \
0011   -I$(includedir) \
0012   -I$(OFFLINE_MAIN)/include \
0013   -isystem$(ROOTSYS)/include
0014 
0015 pkginclude_HEADERS = \
0016   CaloAna.h
0017 
0018 libcaloana_la_SOURCES = \
0019   CaloAna.cc 
0020 
0021 libcaloana_la_LDFLAGS = \
0022   -L$(libdir) \
0023   -L$(OFFLINE_MAIN)/lib \
0024   -lcalo_io \
0025   -lfun4all \
0026   -lg4detectors_io \
0027   -lphg4hit
0028 
0029 
0030 ################################################
0031 # linking tests
0032 
0033 noinst_PROGRAMS = \
0034   testexternals
0035 
0036 testexternals_SOURCES = testexternals.C
0037 testexternals_LDADD = libcaloana.la
0038 
0039 testexternals.C:
0040         echo "//*** this is a generated file. Do not commit, do not edit" > $@
0041         echo "int main()" >> $@
0042         echo "{" >> $@
0043         echo "  return 0;" >> $@
0044         echo "}" >> $@
0045 
0046 # Rule for generating table CINT dictionaries.
0047 %_Dict.cc: %.h %LinkDef.h
0048         rootcint -f $@ @CINTDEFS@ -c $(DEFAULT_INCLUDES) $(AM_CPPFLAGS) $^
0049 
0050 clean-local:
0051         rm -f $(BUILT_SOURCES)