Back to home page

sPhenix code displayed by LXR

 
 

    


File indexing completed on 2025-08-05 08:12:34

0001 AUTOMAKE_OPTIONS = foreign
0002 
0003 lib_LTLIBRARIES = \
0004     libsphanalysis.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   -I$(ROOTSYS)/include
0014 
0015 pkginclude_HEADERS = \
0016   sPHAnalysis.h
0017 
0018 if ! MAKEROOT6
0019   ROOT5_DICTS = \
0020     sPHAnalysis_Dict.cc
0021 endif
0022 
0023 libsphanalysis_la_SOURCES = \
0024   $(ROOT5_DICTS) \
0025   sPHAnalysis.cc 
0026 
0027 libsphanalysis_la_LDFLAGS = \
0028   -L$(libdir) \
0029   -L$(OFFLINE_MAIN)/lib \
0030   -lcalo_io \
0031   -lfun4all \
0032   -lg4detectors_io \
0033   -lphg4hit \
0034   -lg4dst \
0035   -lg4eval \
0036   -leventmix
0037 
0038 ################################################
0039 # linking tests
0040 
0041 noinst_PROGRAMS = \
0042   testexternals
0043 
0044 testexternals_SOURCES = testexternals.C
0045 testexternals_LDADD = libsphanalysis.la
0046 
0047 testexternals.C:
0048         echo "//*** this is a generated file. Do not commit, do not edit" > $@
0049         echo "int main()" >> $@
0050         echo "{" >> $@
0051         echo "  return 0;" >> $@
0052         echo "}" >> $@
0053 
0054 # Rule for generating table CINT dictionaries.
0055 %_Dict.cc: %.h %LinkDef.h
0056         rootcint -f $@ @CINTDEFS@ -c $(DEFAULT_INCLUDES) $(AM_CPPFLAGS) $^
0057 
0058 clean-local:
0059         rm -f *Dict* $(BUILT_SOURCES) *.pcm
0060