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