Back to home page

sPhenix code displayed by LXR

 
 

    


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

0001 AUTOMAKE_OPTIONS = foreign
0002 
0003 INCLUDES = \
0004   -I$(includedir) \
0005   -I$(OFFLINE_MAIN)/include \
0006   -I`root-config --incdir`
0007 
0008 libTreeMaker_la_LDFLAGS = \
0009   -nodefaultlibs \
0010   -L$(libdir) \
0011   -L$(OFFLINE_MAIN)/lib \
0012   `root-config --libs`
0013 
0014 lib_LTLIBRARIES = \
0015   libTreeMaker.la
0016 
0017 include_HEADERS = \
0018   TreeMaker.h \
0019   TreeMakerLinkDef.h
0020 
0021 libTreeMaker_la_SOURCES = \
0022   TreeMaker.C \
0023   TreeMakerInitializations.C \
0024   TreeMakerGetJets.C \
0025   TreeMakerGetClusters.C \
0026   TreeMakerCreateNode.C \
0027   TreeMakerCopyAndMakeJets.C \
0028   TreeMakerCopyAndMakeClusters.C \
0029   TreeMakerUseFastJet.C \
0030   TreeMaker_Dict.C
0031 
0032 libTreeMaker_la_LIBADD = \
0033   -lg4dst \
0034   -lg4eval \
0035   -lcalotrigger \
0036   -ljetbackground \
0037   -lphool
0038 
0039 BUILT_SOURCES = \
0040   testexternals.C
0041 
0042 noinst_PROGRAMS = \
0043   testexternals
0044 
0045 testexternals_LDADD = \
0046   libTreeMaker.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 ##############################################
0056 # please add new classes in alphabetical order
0057 # Rule for generating CINT dictionaries from class headers.
0058 %_Dict.C: %.h %LinkDef.h
0059         rootcint -f $@ -c $(CINTFLAGS) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $^
0060 
0061 clean-local:
0062         rm -f *Dict* testexternals.C
0063 
0064 testexternals_SOURCES = testexternals.C