File indexing completed on 2025-12-19 09:18:43
0001 AUTOMAKE_OPTIONS = foreign
0002
0003 AM_CPPFLAGS = \
0004 -I$(includedir) \
0005 -I$(OFFLINE_MAIN)/include \
0006 -isystem$(ROOTSYS)/include
0007
0008 AM_LDFLAGS = \
0009 -L$(libdir) \
0010 -L$(OFFLINE_MAIN)/lib \
0011 -L$(OFFLINE_MAIN)/lib64
0012
0013 pkginclude_HEADERS = \
0014 MvtxFakeHitRate.h \
0015 MvtxHitMapWriter.h
0016
0017 lib_LTLIBRARIES = \
0018 libmvtxcalib.la
0019
0020 libmvtxcalib_la_SOURCES = \
0021 MvtxFakeHitRate.cc \
0022 MvtxHitMapWriter.cc
0023
0024 libmvtxcalib_la_LIBADD = \
0025 -lphool \
0026 -lmvtx \
0027 -lffarawobjects \
0028 -lSubsysReco
0029
0030 BUILT_SOURCES = testexternals.cc
0031
0032 noinst_PROGRAMS = \
0033 testexternals
0034
0035 testexternals_SOURCES = testexternals.cc
0036 testexternals_LDADD = libmvtxcalib.la
0037
0038 testexternals.cc:
0039 echo "//*** this is a generated file. Do not commit, do not edit" > $@
0040 echo "int main()" >> $@
0041 echo "{" >> $@
0042 echo " return 0;" >> $@
0043 echo "}" >> $@
0044
0045 clean-local:
0046 rm -f $(BUILT_SOURCES)
0047