File indexing completed on 2025-08-03 08:14:08
0001
0002 AUTOMAKE_OPTIONS = foreign
0003 CXXFLAGS += -g -O2
0004
0005 lib_LTLIBRARIES = \
0006 libPHFlowJetMaker.la
0007
0008 INCLUDES = \
0009 -I$(includedir) \
0010 -I$(OFFLINE_MAIN)/include \
0011 -I$(ROOTSYS)/include \
0012 -I$(G4_MAIN)/include/Geant4 \
0013 -I$(HOME)/work/install/include
0014
0015 noinst_HEADERS = \
0016 PHFlowJetMakerLinkDef.h \
0017 PHFlowJetMaker.h
0018
0019 libPHFlowJetMaker_la_SOURCES = \
0020 PHFlowJetMaker.C
0021
0022 nodist_libPHFlowJetMaker_la_SOURCES = \
0023 PHFlowJetMaker_Dict.C
0024
0025 libPHFlowJetMaker_la_LDFLAGS = \
0026 -L$(libdir) \
0027 -L$(OFFLINE_MAIN)/lib \
0028 -L$(HOME)/work/install/lib \
0029 -lcalo_util \
0030 -lfun4all \
0031 -lg4jets \
0032 -lphg4hit \
0033 -lg4detectors \
0034 -lg4testbench \
0035 -lfastjet \
0036 -lg4hough \
0037 -lCGAL
0038
0039
0040
0041
0042 noinst_PROGRAMS = \
0043 testexternals
0044
0045 testexternals_SOURCES = testexternals.C
0046 testexternals_LDADD = libPHFlowJetMaker.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 CLEANFILES = PHFlowJetMaker_Dict.C
0056
0057
0058 PHFlowJetMaker_Dict.C: \
0059 PHFlowJetMaker.h
0060 rootcint -f $@ -c $(DEFAULT_INCLUDES) $(INCLUDES) $^
0061