Back to home page

sPhenix code displayed by LXR

 
 

    


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

0001 
0002 AUTOMAKE_OPTIONS = foreign
0003 
0004 AM_CPPFLAGS = \
0005   -I$(includedir) \
0006   -I$(OFFLINE_MAIN)/include \
0007   -I$(OFFLINE_MAIN)/include/eigen3 \
0008   -I`root-config --incdir`
0009 
0010 lib_LTLIBRARIES = libHFJetTruthGeneration.la 
0011 
0012 pkginclude_HEADERS = \
0013         HFJetDefs.h \
0014         HFJetTruthTrigger.h
0015 
0016 libHFJetTruthGeneration_la_LDFLAGS = \
0017   -L$(libdir) \
0018   -L$(OFFLINE_MAIN)/lib \
0019   `root-config --libs` \
0020   `fastjet-config --libs`
0021 
0022 libHFJetTruthGeneration_la_LIBADD =  \
0023   -lfun4all \
0024   -lg4dst \
0025   -lg4eval \
0026   -lphhepmc
0027 
0028 if ! MAKEROOT6
0029 ROOT5_DICTS = \
0030   HFJetTruthTrigger_Dict.cc 
0031 endif
0032 
0033 libHFJetTruthGeneration_la_SOURCES = \
0034   $(ROOT5_DICTS) \
0035   HFJetTruthTrigger.cc 
0036 
0037 BUILT_SOURCES = \
0038   testexternals.cc
0039 
0040 testexternals_SOURCES = \
0041   testexternals.cc
0042 
0043 noinst_PROGRAMS = \
0044   testexternals
0045 
0046 testexternals_LDADD = \
0047   libHFJetTruthGeneration.la
0048 
0049 testexternals.cc:
0050         echo "//*** this is a generated file. Do not commit, do not edit" > $@
0051         echo "int main()" >> $@
0052         echo "{" >> $@
0053         echo "  return 0;" >> $@
0054         echo "}" >> $@
0055 
0056 %_Dict.cc: %.h %LinkDef.h
0057         rootcint -f $@ @CINTDEFS@ -c $(DEFAULT_INCLUDES) $(AM_CPPFLAGS) $^
0058 
0059 
0060 clean-local:
0061         rm -f *Dict* $(BUILT_SOURCES)
0062