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