Back to home page

sPhenix code displayed by LXR

 
 

    


File indexing completed on 2025-12-17 09:21:59

0001 AUTOMAKE_OPTIONS = foreign
0002 
0003 AM_CXXFLAGS = `geant4-config --cflags`
0004 
0005 AM_CPPFLAGS = \
0006   -I$(includedir) \
0007   -isystem$(OFFLINE_MAIN)/include  \
0008   -isystem`root-config --incdir`
0009 
0010 lib_LTLIBRARIES = \
0011    libg4jets.la
0012 
0013 AM_LDFLAGS = \
0014   -L$(libdir) \
0015   -L$(OFFLINE_MAIN)/lib
0016 
0017 libg4jets_la_LDFLAGS = \
0018   -L$(libdir) \
0019   -L$(OFFLINE_MAIN)/lib \
0020   `fastjet-config --libs`
0021 
0022 libg4jets_la_LIBADD = \
0023   -lfun4all \
0024   -ljetbase \
0025   -lphg4hit \
0026   -lcalo_io \
0027   -lRecursiveTools \
0028   -lphhepmc_io \
0029   -ltrackbase_historic_io
0030 
0031 pkginclude_HEADERS = \
0032   TruthJetInput.h \
0033   JetHepMCLoader.h
0034 
0035 
0036 libg4jets_la_SOURCES = \
0037   JetHepMCLoader.cc \
0038   TruthJetInput.cc
0039 
0040 ################################################
0041 # linking tests
0042 
0043 noinst_PROGRAMS = \
0044   testexternals_g4jets
0045 
0046 BUILT_SOURCES = testexternals.cc
0047 
0048 testexternals_g4jets_SOURCES = testexternals.cc
0049 testexternals_g4jets_LDADD = libg4jets.la
0050 
0051 testexternals.cc:
0052         echo "//*** this is a generated file. Do not commit, do not edit" > $@
0053         echo "int main()" >> $@
0054         echo "{" >> $@
0055         echo "  return 0;" >> $@
0056         echo "}" >> $@
0057 
0058 clean-local:
0059         rm -f $(BUILT_SOURCES)