Back to home page

sPhenix code displayed by LXR

 
 

    


File indexing completed on 2025-08-03 08:13:09

0001 AUTOMAKE_OPTIONS = foreign
0002 
0003 INCLUDES = \
0004   -I$(includedir) \
0005   -I$(OFFLINE_MAIN)/include \
0006   -I`root-config --incdir`
0007 
0008 libForwardTracking_la_LDFLAGS = \
0009   -nodefaultlibs \
0010   -L$(libdir) \
0011   -L$(OFFLINE_MAIN)/lib \
0012   `root-config --libs`
0013 
0014 lib_LTLIBRARIES = \
0015   libForwardTracking.la
0016 
0017 libForwardTracking_la_SOURCES = \
0018   PHG4HitKalmanFitter.cc \
0019   PHG4HitKalmanFitterDict.C
0020 
0021 libForwardTracking_la_LIBADD = \
0022   -lg4testbench \
0023   -lg4detectors \
0024   -lg4hough_io \
0025   -lphg4hit \
0026   -lphool \
0027   -lgenfit2exp -lPHGenFit
0028 
0029 install-exec-hook:
0030         @[ $$OSTYPE = darwin ] && ln -sf $(DESTDIR)$(libdir)/libForwardTracking.dylib $(DESTDIR)$(libdir)/libForwardTracking.so || true
0031 
0032 BUILT_SOURCES = \
0033   testexternals.C
0034 
0035 noinst_PROGRAMS = \
0036   testexternals
0037 
0038 testexternals_LDADD = \
0039   libForwardTracking.la
0040 
0041 testexternals.C:
0042         echo "//*** this is a generated file. Do not commit, do not edit" > $@
0043         echo "int main()" >> $@
0044         echo "{" >> $@
0045         echo "  return 0;" >> $@
0046         echo "}" >> $@
0047 
0048 # Rule for generating CINT dictionaries from class headers.
0049 %Dict.C: %.h %LinkDef.h
0050         rootcint -f $@ -c $(CINTFLAGS) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $^
0051 
0052 clean-local:
0053         rm -f *Dict*
0054 
0055 testexternals_SOURCES = testexternals.C