File indexing completed on 2025-12-18 09:20:46
0001 AUTOMAKE_OPTIONS = foreign
0002
0003 AM_CPPFLAGS = \
0004 -I$(includedir) \
0005 -isystem$(OFFLINE_MAIN)/include \
0006 -I`root-config --incdir`
0007
0008 lib_LTLIBRARIES = \
0009 libg4vertex.la
0010
0011 AM_LDFLAGS = \
0012 -L$(libdir) \
0013 -L$(OFFLINE_MAIN)/lib
0014
0015 libg4vertex_la_LIBADD = \
0016 -lg4detectors \
0017 -lfun4all \
0018 -lmbd_io \
0019 -ltrackbase_historic_io \
0020 -lglobalvertex_io
0021
0022 pkginclude_HEADERS = \
0023 GlobalVertexFastSimReco.h
0024
0025 libg4vertex_la_SOURCES = \
0026 GlobalVertexFastSimReco.cc
0027
0028
0029 %_Dict.cc: %.h %LinkDef.h
0030 rootcint -f $@ @CINTDEFS@ $(DEFAULT_INCLUDES) $(AM_CPPFLAGS) $^
0031
0032
0033 %_Dict_rdict.pcm: %_Dict.cc ;
0034
0035
0036
0037
0038 noinst_PROGRAMS = \
0039 testexternals_g4vertex
0040
0041 BUILT_SOURCES = \
0042 testexternals.cc
0043
0044 testexternals_g4vertex_SOURCES = testexternals.cc
0045 testexternals_g4vertex_LDADD = libg4vertex.la
0046
0047 testexternals.cc:
0048 echo "//*** this is a generated file. Do not commit, do not edit" > $@
0049 echo "int main()" >> $@
0050 echo "{" >> $@
0051 echo " return 0;" >> $@
0052 echo "}" >> $@
0053
0054 clean-local:
0055 rm -f *Dict* $(BUILT_SOURCES) *.pcm