File indexing completed on 2025-08-07 08:18:01
0001 AUTOMAKE_OPTIONS = foreign
0002
0003 AM_CPPFLAGS = \
0004 -I$(includedir) \
0005 -isystem$(OFFLINE_MAIN)/include \
0006 -isystem`root-config --incdir`
0007
0008 AM_LDFLAGS = \
0009 -L$(libdir) \
0010 -L$(OFFLINE_MAIN)/lib \
0011 -L$(OFFLINE_MAIN)/lib64 \
0012 `root-config --libs`
0013
0014 lib_LTLIBRARIES = \
0015 libPHGenFit.la
0016
0017 pkginclude_HEADERS = \
0018 Fitter.h \
0019 Measurement.h \
0020 PlanarMeasurement.h \
0021 SpacepointMeasurement.h \
0022 Track.h \
0023 Tools.h
0024
0025 libPHGenFit_la_SOURCES = \
0026 Fitter.cc \
0027 PlanarMeasurement.cc \
0028 SpacepointMeasurement.cc \
0029 Track.cc \
0030 Tools.cc
0031
0032 libPHGenFit_la_LIBADD = \
0033 -lgenfit2 \
0034 -lgenfit2exp \
0035 -lphfield
0036
0037 BUILT_SOURCES = \
0038 testexternals.cc
0039
0040 testexternals_SOURCES = \
0041 testexternals.cc
0042
0043 noinst_PROGRAMS = \
0044 testexternals
0045
0046 testexternals_LDADD = \
0047 libPHGenFit.la
0048
0049 testexternals.cc:
0050 echo "//*** this is a generated file. Do not commit, do not edit" > $@
0051 echo "int main()" >> $@
0052 echo "{" >> $@
0053 echo " return 0;" >> $@
0054 echo "}" >> $@
0055