Back to home page

sPhenix code displayed by LXR

 
 

    


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

0001 AUTOMAKE_OPTIONS = foreign
0002 
0003 AM_CXXFLAGS = `geant4-config --cflags`
0004 
0005 lib_LTLIBRARIES = \
0006   libg4trackfastsim.la 
0007 
0008 AM_CPPFLAGS = \
0009   -I$(includedir) \
0010   -isystem$(OFFLINE_MAIN)/include  \
0011   -isystem$(ROOTSYS)/include
0012 
0013 
0014 AM_LDFLAGS = \
0015   -L$(libdir) \
0016   -L$(OFFLINE_MAIN)/lib \
0017   -L$(ROOTSYS)/lib
0018 
0019 libg4trackfastsim_la_LIBADD = \
0020   -lcalo_io \
0021   -lgsl \
0022   -lgslcblas \
0023   -lPHGenFit \
0024   -lphgeom \
0025   -lphg4hit \
0026   -ltrackbase_historic_io \
0027   -lphparameter_io \
0028   -lglobalvertex_io
0029 
0030 pkginclude_HEADERS = \
0031   PHG4TrackFastSim.h \
0032   PHG4TrackFastSimEval.h
0033 
0034 libg4trackfastsim_la_SOURCES = \
0035   PHG4TrackFastSim.cc \
0036   PHG4TrackFastSimEval.cc
0037 
0038 
0039 ################################################
0040 # linking tests
0041 
0042 BUILT_SOURCES = testexternals.cc
0043 
0044 noinst_PROGRAMS = \
0045   testexternals_tracker
0046 
0047 testexternals_tracker_SOURCES = testexternals.cc
0048 testexternals_tracker_LDADD = libg4trackfastsim.la
0049 
0050 testexternals.cc:
0051         echo "//*** this is a generated file. Do not commit, do not edit" > $@
0052         echo "int main()" >> $@
0053         echo "{" >> $@
0054         echo "  return 0;" >> $@
0055         echo "}" >> $@
0056 
0057 ################################################
0058 
0059 clean-local:
0060         rm -f $(BUILT_SOURCES)