File indexing completed on 2025-12-16 09:20:17
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
0026 nobase_dist_pcm_DATA = $(ROOTDICTS:.cc=_rdict.pcm)
0027
0028 lib_LTLIBRARIES = \
0029 libparticleflow_io.la \
0030 libparticleflow.la
0031
0032 libparticleflow_io_la_SOURCES = \
0033 $(ROOTDICTS) \
0034 ParticleFlowElement.cc \
0035 ParticleFlowElementv1.cc \
0036 ParticleFlowElementContainer.cc
0037
0038 libparticleflow_la_SOURCES = \
0039 ParticleFlowReco.cc \
0040 ParticleFlowJetInput.cc
0041
0042 libparticleflow_io_la_LIBADD = \
0043 -lphool
0044
0045 libparticleflow_la_LIBADD = \
0046 libparticleflow_io.la \
0047 -lcalo_io \
0048 -lgsl \
0049 -lgslcblas \
0050 -lphg4hit \
0051 -ljetbase \
0052 -ltrackbase_historic_io \
0053 -lCLHEP \
0054 -lglobalvertex_io \
0055 -lSubsysReco
0056
0057 %_Dict.cc: %.h %LinkDef.h
0058 rootcint -f $@ @CINTDEFS@ $(DEFAULT_INCLUDES) $(AM_CPPFLAGS) $^
0059
0060
0061 %_Dict_rdict.pcm: %_Dict.cc ;
0062
0063 BUILT_SOURCES = testexternals.cc
0064
0065 noinst_PROGRAMS = \
0066 testexternals_io \
0067 testexternals
0068
0069 testexternals_io_SOURCES = testexternals.cc
0070 testexternals_io_LDADD = libparticleflow_io.la
0071
0072 testexternals_SOURCES = testexternals.cc
0073 testexternals_LDADD = libparticleflow.la
0074
0075 testexternals.cc:
0076 echo "//*** this is a generated file. Do not commit, do not edit" > $@
0077 echo "int main()" >> $@
0078 echo "{" >> $@
0079 echo " return 0;" >> $@
0080 echo "}" >> $@
0081
0082 clean-local:
0083 rm -f $(BUILT_SOURCES)