File indexing completed on 2025-12-16 09:19:54
0001 AUTOMAKE_OPTIONS = foreign
0002
0003 lib_LTLIBRARIES = \
0004 libdecayfinder_io.la \
0005 libdecayfinder.la
0006
0007 AM_LDFLAGS = \
0008 -L$(libdir) \
0009 -L$(OFFLINE_MAIN)/lib \
0010 `root-config --evelibs`
0011
0012 AM_CPPFLAGS = \
0013 -I$(includedir) \
0014 -isystem$(OFFLINE_MAIN)/include \
0015 -isystem$(ROOTSYS)/include
0016
0017 pkginclude_HEADERS = \
0018 DecayFinderContainerBase.h \
0019 DecayFinderContainer_v1.h \
0020 DecayFinder.h
0021
0022 ROOTDICTS = \
0023 DecayFinderContainerBase_Dict.cc \
0024 DecayFinderContainer_v1_Dict.cc
0025
0026 pcmdir = $(libdir)
0027
0028 nobase_dist_pcm_DATA = $(ROOTDICTS:.cc=_rdict.pcm)
0029
0030 libdecayfinder_io_la_SOURCES = \
0031 $(ROOTDICTS) \
0032 DecayFinderContainerBase.cc \
0033 DecayFinderContainer_v1.cc
0034
0035 libdecayfinder_la_SOURCES = \
0036 DecayFinder.cc
0037
0038 libdecayfinder_io_la_LIBADD = \
0039 -lphool
0040
0041 libdecayfinder_la_LIBADD = \
0042 libdecayfinder_io.la \
0043 -lfun4all \
0044 -lphhepmc \
0045 -lphg4hit
0046
0047
0048 %_Dict.cc: %.h %LinkDef.h
0049 rootcint -f $@ @CINTDEFS@ $(DEFAULT_INCLUDES) $(AM_CPPFLAGS) $^
0050
0051
0052 %_Dict_rdict.pcm: %_Dict.cc ;
0053
0054
0055
0056
0057 noinst_PROGRAMS = \
0058 testexternals \
0059 testexternals_io
0060
0061 BUILT_SOURCES = testexternals.cc
0062
0063 testexternals_SOURCES = testexternals.cc
0064 testexternals_LDADD = libdecayfinder.la
0065
0066 testexternals_io_SOURCES = testexternals.cc
0067 testexternals_io_LDADD = libdecayfinder_io.la
0068
0069 testexternals.cc:
0070 echo "//*** this is a generated file. Do not commit, do not edit" > $@
0071 echo "int main()" >> $@
0072 echo "{" >> $@
0073 echo " return 0;" >> $@
0074 echo "}" >> $@
0075
0076 clean-local:
0077 rm -f *Dict* $(BUILT_SOURCES) *.pcm