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