Back to home page

sPhenix code displayed by LXR

 
 

    


File indexing completed on 2026-04-05 08:12:17

0001 AUTOMAKE_OPTIONS = foreign
0002 
0003 AM_CPPFLAGS = \
0004   -I$(includedir) \
0005   -isystem$(OFFLINE_MAIN)/include \
0006   -isystem$(ROOTSYS)/include
0007 
0008 AM_LDFLAGS = \
0009   -L$(libdir) \
0010   -L$(OFFLINE_MAIN)/lib \
0011   -L$(OFFLINE_MAIN)/lib64
0012 
0013 pkginclude_HEADERS = \
0014   dEdxFitter.h \
0015   GlobaldEdxFitter.h \
0016   bethe_bloch.h
0017 
0018 lib_LTLIBRARIES = \
0019   libdedxfitter.la
0020 
0021 libdedxfitter_la_SOURCES = \
0022   dEdxFitter.cc \
0023   GlobaldEdxFitter.cc
0024 
0025 libdedxfitter_la_LIBADD = \
0026   -lphool \
0027   -ltrack_io \
0028   -lg4detectors \
0029   -ltrackbase_historic \
0030   -ltrackbase_historic_io \
0031   -lglobalvertex \
0032   -lSubsysReco
0033 
0034 BUILT_SOURCES = testexternals.cc
0035 
0036 noinst_PROGRAMS = \
0037   testexternals
0038 
0039 testexternals_SOURCES = testexternals.cc
0040 testexternals_LDADD   = libdedxfitter.la
0041 
0042 testexternals.cc:
0043         echo "//*** this is a generated file. Do not commit, do not edit" > $@
0044         echo "int main()" >> $@
0045         echo "{" >> $@
0046         echo "  return 0;" >> $@
0047         echo "}" >> $@
0048 
0049 clean-local:
0050         rm -f $(BUILT_SOURCES)