File indexing completed on 2025-08-07 08:13:58
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 InttHitCorrelation.h \
0015 InttClusterCorrelation.h \
0016 InttQaCommon.h
0017
0018 lib_LTLIBRARIES = \
0019 libInttCorrelation.la
0020
0021 libInttCorrelation_la_SOURCES = \
0022 InttHitCorrelation.cc \
0023 InttClusterCorrelation.cc
0024
0025 libInttCorrelation_la_LIBADD = \
0026 -lphool \
0027 -lSubsysReco \
0028 -lffaobjects \
0029 -lffarawobjects \
0030 -ltrack_io \
0031 -lintt
0032
0033 BUILT_SOURCES = testexternals.cc
0034
0035 noinst_PROGRAMS = \
0036 testexternals
0037
0038 testexternals_SOURCES = testexternals.cc
0039 testexternals_LDADD = libInttCorrelation.la
0040
0041 testexternals.cc:
0042 echo "//*** this is a generated file. Do not commit, do not edit" > $@
0043 echo "int main()" >> $@
0044 echo "{" >> $@
0045 echo " return 0;" >> $@
0046 echo "}" >> $@
0047
0048 clean-local:
0049 rm -f $(BUILT_SOURCES)