File indexing completed on 2025-08-06 08:17:57
0001 AUTOMAKE_OPTIONS = foreign
0002
0003 AM_CPPFLAGS = \
0004 -I$(includedir) \
0005 -isystem$(OFFLINE_MAIN)/include \
0006 -isystem$(ROOTSYS)/include
0007
0008 AM_LDFLAGS = \
0009 -L$(libdir) \
0010 -L$(OFFLINE_MAIN)/lib
0011
0012 pkginclude_HEADERS = \
0013 ParticleFlowReco.h \
0014 ParticleFlowElement.h \
0015 ParticleFlowElementv1.h \
0016 ParticleFlowElementContainer.h \
0017 ParticleFlowJetInput.h
0018
0019 ROOTDICTS = \
0020 ParticleFlowElement_Dict.cc \
0021 ParticleFlowElementv1_Dict.cc \
0022 ParticleFlowElementContainer_Dict.cc
0023
0024 pcmdir = $(libdir)
0025 nobase_dist_pcm_DATA = \
0026 ParticleFlowElement_Dict_rdict.pcm \
0027 ParticleFlowElementv1_Dict_rdict.pcm \
0028 ParticleFlowElementContainer_Dict_rdict.pcm
0029
0030 lib_LTLIBRARIES = \
0031 libparticleflow_io.la \
0032 libparticleflow.la
0033
0034 libparticleflow_io_la_SOURCES = \
0035 $(ROOTDICTS) \
0036 ParticleFlowElement.cc \
0037 ParticleFlowElementv1.cc \
0038 ParticleFlowElementContainer.cc
0039
0040 libparticleflow_la_SOURCES = \
0041 ParticleFlowReco.cc \
0042 ParticleFlowJetInput.cc
0043
0044 libparticleflow_io_la_LIBADD = \
0045 -lphool
0046
0047 libparticleflow_la_LIBADD = \
0048 libparticleflow_io.la \
0049 -lcalo_io \
0050 -lgsl \
0051 -lgslcblas \
0052 -lphg4hit \
0053 -ljetbase \
0054 -ltrackbase_historic_io \
0055 -lCLHEP \
0056 -lglobalvertex_io \
0057 -lSubsysReco
0058
0059 %_Dict.cc: %.h %LinkDef.h
0060 rootcint -f $@ @CINTDEFS@ $(DEFAULT_INCLUDES) $(AM_CPPFLAGS) $^
0061
0062
0063 %_Dict_rdict.pcm: %_Dict.cc ;
0064
0065 BUILT_SOURCES = testexternals.cc
0066
0067 noinst_PROGRAMS = \
0068 testexternals_io \
0069 testexternals
0070
0071 testexternals_io_SOURCES = testexternals.cc
0072 testexternals_io_LDADD = libparticleflow_io.la
0073
0074 testexternals_SOURCES = testexternals.cc
0075 testexternals_LDADD = libparticleflow.la
0076
0077 testexternals.cc:
0078 echo "//*** this is a generated file. Do not commit, do not edit" > $@
0079 echo "int main()" >> $@
0080 echo "{" >> $@
0081 echo " return 0;" >> $@
0082 echo "}" >> $@
0083
0084 clean-local:
0085 rm -f $(BUILT_SOURCES)