File indexing completed on 2025-08-06 08:21:59
0001 AUTOMAKE_OPTIONS = foreign
0002
0003 lib_LTLIBRARIES = libmvtxprototype2.la
0004
0005 AM_CPPFLAGS = \
0006 -I$(includedir) \
0007 -I$(OFFLINE_MAIN)/include \
0008 -I$(ROOTSYS)/include
0009
0010 AM_LDFLAGS = \
0011 -L$(libdir) \
0012 -L$(ROOTSYS)/lib \
0013 -L$(OFFLINE_MAIN)/lib
0014
0015 libmvtxprototype2_la_LIBADD = \
0016 -ltrack_io \
0017 -ltrackbase_historic_io \
0018 -lmvtx
0019
0020 pkginclude_HEADERS = \
0021 MvtxPrototype2Align.h \
0022 MvtxPrototype2Geom.h \
0023 MvtxPrototype2UnpackPRDF.h \
0024 MvtxPrototype2Clusterizer.h \
0025 MvtxStandaloneTracking.h
0026
0027 libmvtxprototype2_la_SOURCES = \
0028 MvtxPrototype2Align.cc \
0029 MvtxPrototype2Geom.cc \
0030 MvtxPrototype2UnpackPRDF.cc \
0031 MvtxPrototype2Clusterizer.cc \
0032 MvtxStandaloneTracking.cc
0033
0034
0035
0036
0037 BUILT_SOURCES = testexternals.C
0038
0039 noinst_PROGRAMS = \
0040 testexternals_tracker
0041
0042 testexternals_tracker_SOURCES = testexternals.C
0043 testexternals_tracker_LDADD = libmvtxprototype2.la
0044
0045 testexternals.C:
0046 echo "//*** this is a generated file. Do not commit, do not edit" > $@
0047 echo "int main()" >> $@
0048 echo "{" >> $@
0049 echo " return 0;" >> $@
0050 echo "}" >> $@
0051
0052
0053
0054 clean-local:
0055 rm -f $(BUILT_SOURCES)