File indexing completed on 2025-08-05 08:12:37
0001 AUTOMAKE_OPTIONS = foreign
0002
0003 INCLUDES = \
0004 -I$(includedir) \
0005 -I$(OFFLINE_MAIN)/include/eigen3 \
0006 -I$(OFFLINE_MAIN)/include \
0007 -I$(G4_MAIN)/include \
0008 -I$(G4_MAIN)/include/Geant4 \
0009 -I`root-config --incdir`
0010
0011 lib_LTLIBRARIES = \
0012 libPDEnergy.la
0013
0014 AM_CXXFLAGS = -Wall -Werror -msse2
0015
0016 libPDEnergy_la_LDFLAGS = \
0017 -L$(libdir) \
0018 -L$(OFFLINE_MAIN)/lib
0019
0020 libPDEnergy_la_LIBADD = \
0021 -lfun4all \
0022 -lphg4hit \
0023 -lg4detectors_io \
0024 -lg4hough_io \
0025 -lg4hough \
0026 -lcalo_io -lcalo_util \
0027 -lg4jets_io \
0028 -lg4eval
0029
0030 pkginclude_HEADERS =
0031
0032
0033
0034 libPDEnergy_la_SOURCES = \
0035 JetEnergies.C \
0036 JetEnergies_Dict.C
0037
0038
0039 %_Dict.C: %.h %LinkDef.h
0040 rootcint -f $@ -c $(DEFAULT_INCLUDES) $(INCLUDES) $^
0041
0042 %_Dict.cpp: %.h %LinkDef.h
0043 rootcint -f $@ -c $(DEFAULT_INCLUDES) $(INCLUDES) $^
0044
0045
0046
0047
0048 noinst_PROGRAMS = testexternals
0049
0050 BUILT_SOURCES = \
0051 testexternals.C
0052
0053 testexternals_LDADD = \
0054 libPDEnergy.la
0055
0056 testexternals.C:
0057 echo "//*** this is a generated file. Do not commit, do not edit" > $@
0058 echo "int main()" >> $@
0059 echo "{" >> $@
0060 echo " return 0;" >> $@
0061 echo "}" >> $@
0062
0063 clean-local:
0064 rm -f *Dict* testexternals.C