Back to home page

sPhenix code displayed by LXR

 
 

    


File indexing completed on 2025-08-05 08:13:22

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   libRandomConeTree.la
0010 
0011 AM_LDFLAGS = \
0012   -L$(libdir) \
0013   -L$(OFFLINE_MAIN)/lib \
0014   `fastjet-config --libs`
0015 
0016 libRandomConeTree_la_LIBADD = \
0017   -lfun4all \
0018   -lphool \
0019   -lSubsysReco \
0020   -lg4dst \
0021   -lg4eval \
0022   -lg4jets \
0023   -lrandomcones \
0024   -ltowerrho 
0025   
0026 libRandomConeTree_la_SOURCES = \
0027   RandomConeTree.cc
0028 
0029 pkginclude_HEADERS = \
0030   RandomConeTree.h
0031 
0032 BUILT_SOURCES = testexternals.cc
0033 
0034 noinst_PROGRAMS = \
0035   testexternals
0036 
0037 testexternals_SOURCES = testexternals.cc
0038 testexternals_LDADD   = libRandomConeTree.la
0039 
0040 testexternals.cc:
0041         echo "//*** this is a generated file. Do not commit, do not edit" > $@
0042         echo "int main()" >> $@
0043         echo "{" >> $@
0044         echo "  return 0;" >> $@
0045         echo "}" >> $@
0046 
0047 clean-local:
0048         rm -f $(BUILT_SOURCES)