Back to home page

sPhenix code displayed by LXR

 
 

    


File indexing completed on 2025-08-06 08:18:41

0001 AUTOMAKE_OPTIONS = foreign
0002 
0003 lib_LTLIBRARIES = \
0004     libcalovalid.la
0005 
0006 AM_LDFLAGS = \
0007   -L$(libdir) \
0008   -L$(OFFLINE_MAIN)/lib \
0009   -L$(OFFLINE_MAIN)/lib64
0010 
0011 AM_CPPFLAGS = \
0012   -I$(includedir) \
0013   -isystem$(OFFLINE_MAIN)/include \
0014   -isystem$(ROOTSYS)/include
0015 
0016 pkginclude_HEADERS = \
0017   CaloValid.h \
0018   CaloFittingQA.h
0019 
0020 libcalovalid_la_SOURCES = \
0021   CaloValid.cc \
0022   CaloFittingQA.cc
0023 
0024 libcalovalid_la_LIBADD = \
0025   -lcalo_io \
0026   -lcalotrigger \
0027   -lCLHEP \
0028   -lfun4all \
0029   -lglobalvertex_io \
0030   -lmbd_io \
0031   -lzdcinfo_io \
0032   -lphool \
0033   -lSubsysReco \
0034   -lffarawobjects \
0035   -lffamodules \
0036   -lcdbobjects \
0037   -lqautils
0038 
0039 ################################################
0040 # linking tests
0041 
0042 noinst_PROGRAMS = \
0043   testexternals
0044 
0045 testexternals_SOURCES = testexternals.C
0046 testexternals_LDADD = libcalovalid.la
0047 
0048 testexternals.C:
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 # Rule for generating table CINT dictionaries.
0056 %_Dict.cc: %.h %LinkDef.h
0057         rootcint -f $@ @CINTDEFS@ -c $(DEFAULT_INCLUDES) $(AM_CPPFLAGS) $^
0058 
0059 clean-local:
0060         rm -f $(BUILT_SOURCES)