Back to home page

sPhenix code displayed by LXR

 
 

    


File indexing completed on 2025-08-05 08:18:06

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   -lglobalvertex_io \
0028   -lRecursiveTools \
0029   -lphhepmc_io \
0030   -ltrackbase_historic_io
0031 
0032 pkginclude_HEADERS = \
0033   TruthJetInput.h \
0034   JetHepMCLoader.h
0035 
0036 
0037 libg4jets_la_SOURCES = \
0038   JetHepMCLoader.cc \
0039   TruthJetInput.cc
0040 
0041 ################################################
0042 # linking tests
0043 
0044 noinst_PROGRAMS = \
0045   testexternals_g4jets
0046 
0047 BUILT_SOURCES = testexternals.cc
0048 
0049 testexternals_g4jets_SOURCES = testexternals.cc
0050 testexternals_g4jets_LDADD = libg4jets.la
0051 
0052 testexternals.cc:
0053         echo "//*** this is a generated file. Do not commit, do not edit" > $@
0054         echo "int main()" >> $@
0055         echo "{" >> $@
0056         echo "  return 0;" >> $@
0057         echo "}" >> $@
0058 
0059 clean-local:
0060         rm -f $(BUILT_SOURCES)