File indexing completed on 2025-08-03 08:15:30
0001 AUTOMAKE_OPTIONS = foreign
0002
0003 lib_LTLIBRARIES = \
0004 libresonancejettaggingoutputs.la
0005
0006 AM_LDFLAGS = \
0007 -L$(libdir) \
0008 -L$(OFFLINE_MAIN)/lib \
0009 `root-config --libs`
0010
0011 AM_CPPFLAGS = \
0012 -I$(includedir) \
0013 -isystem$(OFFLINE_MAIN)/include \
0014 -isystem`root-config --incdir` \
0015 -DHomogeneousField
0016
0017 pkginclude_HEADERS = \
0018 BuildResonanceJetTaggingTree.h
0019
0020 libresonancejettaggingoutputs_la_SOURCES = \
0021 BuildResonanceJetTaggingTree.cc
0022
0023 libresonancejettaggingoutputs_la_LDFLAGS = \
0024 -L$(libdir) \
0025 -L$(OFFLINE_MAIN)/lib \
0026 -lcalo_io \
0027 -lfun4all \
0028 -lg4detectors_io \
0029 -lg4jets \
0030 -lkfparticle_sphenix_io \
0031 -lparticleflow_io \
0032 -lphg4hit \
0033 -lg4eval \
0034 -lresonancejettagging \
0035 `fastjet-config --libs`
0036
0037
0038
0039
0040
0041 BUILT_SOURCES = testexternals.cc
0042
0043 noinst_PROGRAMS = \
0044 testexternals
0045
0046 testexternals_SOURCES = testexternals.cc
0047 testexternals_LDADD = libresonancejettaggingoutputs.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 clean-local:
0057 rm -f $(BUILT_SOURCES)