File indexing completed on 2025-08-05 08:16:04
0001 AUTOMAKE_OPTIONS = foreign
0002
0003
0004 lib_LTLIBRARIES = \
0005 libphparameter_io.la \
0006 libphparameter.la
0007
0008 AM_CPPFLAGS = \
0009 -I$(includedir) \
0010 -isystem$(OFFLINE_MAIN)/include \
0011 -isystem$(ROOTSYS)/include
0012
0013 libphparameter_io_la_SOURCES = \
0014 PHParameters.cc \
0015 PHParametersContainer.cc
0016
0017 libphparameter_la_SOURCES = \
0018 PHParameterContainerInterface.cc \
0019 PHParameterInterface.cc \
0020 PHParameterUtils.cc
0021
0022 AM_LDFLAGS = \
0023 -L$(libdir) \
0024 -L$(OFFLINE_MAIN)/lib \
0025 -L$(OFFLINE_MAIN)/lib64
0026
0027 libphparameter_la_LIBADD = \
0028 libphparameter_io.la \
0029 -lboost_system \
0030 -lffamodules \
0031 -lpdbcalBase \
0032 -lphool
0033
0034 libphparameter_io_la_LIBADD = \
0035 -lpdbcalBase \
0036 -lphool
0037
0038
0039
0040
0041
0042 pkginclude_HEADERS = \
0043 PHParameterContainerInterface.h \
0044 PHParameterInterface.h \
0045 PHParameters.h \
0046 PHParametersContainer.h \
0047 PHParameterUtils.h
0048
0049
0050
0051
0052 BUILT_SOURCES = testexternals.cc
0053
0054 noinst_PROGRAMS = \
0055 testexternals_phparameter \
0056 testexternals_phparameter_io
0057
0058 testexternals_phparameter_SOURCES = testexternals.cc
0059 testexternals_phparameter_LDADD = libphparameter.la
0060
0061 testexternals_phparameter_io_SOURCES = testexternals.cc
0062 testexternals_phparameter_io_LDADD = libphparameter_io.la
0063
0064 testexternals.cc:
0065 echo "//*** this is a generated file. Do not commit, do not edit" > $@
0066 echo "int main()" >> $@
0067 echo "{" >> $@
0068 echo " return 0;" >> $@
0069 echo "}" >> $@
0070
0071
0072
0073
0074 clean-local:
0075 rm -f $(BUILT_SOURCES)