Back to home page

sPhenix code displayed by LXR

 
 

    


File indexing completed on 2025-08-06 08:14:16

0001 AUTOMAKE_OPTIONS = foreign
0002 
0003 AM_CPPFLAGS = \
0004   -I$(includedir) \
0005   -I$(OFFLINE_MAIN)/include \
0006   -I`root-config --incdir`
0007 
0008 lib_LTLIBRARIES = \
0009   libJetBkgdSub.la
0010 
0011 AM_LDFLAGS = \
0012   -L$(libdir) \
0013   -L$(OFFLINE_MAIN)/lib \
0014   `fastjet-config --libs`
0015 
0016 libJetBkgdSub_la_LIBADD = \
0017   -lfun4all \
0018   -lg4dst \
0019   -lg4eval \
0020   -lphool \
0021   -lSubsysReco \
0022   -lg4jets
0023 
0024 
0025 libJetBkgdSub_la_SOURCES = \
0026   JetBkgdSub.cc
0027 
0028 pkginclude_HEADERS = \
0029   JetBkgdSub.h
0030 
0031 BUILT_SOURCES = testexternals.cc
0032 
0033 noinst_PROGRAMS = \
0034   testexternals
0035 
0036 testexternals_SOURCES = testexternals.cc
0037 testexternals_LDADD   = libJetBkgdSub.la
0038 
0039 testexternals.cc:
0040         echo "//*** this is a generated file. Do not commit, do not edit" > $@
0041         echo "int main()" >> $@
0042         echo "{" >> $@
0043         echo "  return 0;" >> $@
0044         echo "}" >> $@
0045 
0046 clean-local:
0047         rm -f $(BUILT_SOURCES)