File indexing completed on 2025-08-06 08:14:20
0001 AUTOMAKE_OPTIONS = foreign
0002
0003 AM_CPPFLAGS = \
0004 -I$(includedir) \
0005 -I$(OFFLINE_MAIN)/include \
0006 -I`root-config --incdir`
0007
0008 lib_LTLIBRARIES = \
0009 libtowerrho_io.la \
0010 libtowerrho.la
0011
0012 AM_LDFLAGS = \
0013 -L$(libdir) \
0014 -L$(OFFLINE_MAIN)/lib
0015
0016 libtowerrho_io_la_LIBADD = \
0017 -lphool
0018
0019 libtowerrho_la_LDFLAGS = \
0020 -L$(libdir) \
0021 -L$(OFFLINE_MAIN)/lib \
0022 `fastjet-config --libs`
0023
0024 libtowerrho_la_LIBADD = \
0025 libtowerrho_io.la \
0026 -ljetbase \
0027 -lfun4all \
0028 -lSubsysReco
0029
0030 pkginclude_HEADERS = \
0031 DetermineTowerRho.h \
0032 TowerRho.h \
0033 TowerRhov1.h
0034
0035 ROOTDICTS = \
0036 TowerRho_Dict.cc \
0037 TowerRhov1_Dict.cc
0038
0039 pcmdir = $(libdir)
0040 nobase_dist_pcm_DATA = \
0041 TowerRho_Dict_rdict.pcm \
0042 TowerRhov1_Dict_rdict.pcm
0043
0044 libtowerrho_io_la_SOURCES = \
0045 $(ROOTDICTS) \
0046 TowerRhov1.cc
0047
0048 libtowerrho_la_SOURCES = \
0049 DetermineTowerRho.cc
0050
0051
0052 %_Dict.cc: %.h %LinkDef.h
0053 rootcint -f $@ @CINTDEFS@ $(DEFAULT_INCLUDES) $(AM_CPPFLAGS) $^
0054
0055
0056 %_Dict_rdict.pcm: %_Dict.cc ;
0057
0058
0059
0060 BUILT_SOURCES = testexternals.cc
0061
0062 noinst_PROGRAMS = \
0063 testexternals_towerrho_io \
0064 testexternals_towerrho
0065
0066
0067 testexternals_towerrho_io_SOURCES = testexternals.cc
0068 testexternals_towerrho_io_LDADD = libtowerrho_io.la
0069
0070 testexternals_towerrho_SOURCES = testexternals.cc
0071 testexternals_towerrho_LDADD = libtowerrho.la
0072
0073 testexternals.cc:
0074 echo "//*** this is a generated file. Do not commit, do not edit" > $@
0075 echo "int main()" >> $@
0076 echo "{" >> $@
0077 echo " return 0;" >> $@
0078 echo "}" >> $@
0079
0080 clean-local:
0081 rm -f *Dict* $(BUILT_SOURCES) *.pcm
0082
0083