File indexing completed on 2025-08-03 08:15:37
0001 AUTOMAKE_OPTIONS = foreign
0002
0003 lib_LTLIBRARIES = \
0004 libtagandprobe.la
0005
0006 AM_LDFLAGS = \
0007 -L$(libdir) \
0008 -L$(OFFLINE_MAIN)/lib \
0009 `root-config --libs`
0010
0011 AM_CPPFLAGS = \
0012 -I$(includedir) \
0013 -isystem$(OFFLINE_MAIN)/include \
0014 -isystem$(ROOTSYS)/include \
0015 -DHomogeneousField
0016
0017 pkginclude_HEADERS = \
0018 TagAndProbe.h
0019
0020 libtagandprobe_la_SOURCES = \
0021 TagAndProbe.cc
0022
0023 libtagandprobe_la_LIBADD = \
0024 -lcalo_io \
0025 -lfun4all \
0026 -lg4eval \
0027 -lphhepmc \
0028 -lKFParticle \
0029 -ltrack_io \
0030 -ltrackeralign \
0031 -ltrackbase_historic_io
0032
0033
0034 %_Dict.cc: %.h %LinkDef.h
0035 rootcint -f $@ @CINTDEFS@ $(DEFAULT_INCLUDES) $(AM_CPPFLAGS) $^
0036
0037
0038 %_Dict_rdict.pcm: %_Dict.cc ;
0039
0040
0041
0042
0043 noinst_PROGRAMS = \
0044 testexternals
0045
0046 BUILT_SOURCES = testexternals.cc
0047
0048 testexternals_SOURCES = testexternals.cc
0049 testexternals_LDADD = libtagandprobe.la
0050
0051 testexternals.cc:
0052 echo "//*** this is a generated file. Do not commit, do not edit" > $@
0053 echo "int main()" >> $@
0054 echo "{" >> $@
0055 echo " return 0;" >> $@
0056 echo "}" >> $@
0057
0058 clean-local:
0059 rm -f *Dict* $(BUILT_SOURCES) *.pcm