File indexing completed on 2025-12-17 09:21:20
0001 AUTOMAKE_OPTIONS = foreign
0002
0003 AM_CPPFLAGS = \
0004 -I$(includedir) \
0005 -isystem$(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 QAKFParticle.h \
0015 QAKFParticleTrackPtAsymmetry.h
0016
0017 lib_LTLIBRARIES = \
0018 libkfparticleqa.la
0019
0020 libkfparticleqa_la_SOURCES = \
0021 QAKFParticle.cc \
0022 QAKFParticleTrackPtAsymmetry.cc
0023
0024 libkfparticleqa_io_la_LIBADD = \
0025 -lKFParticle \
0026 -lSubsysReco \
0027 -lqautils \
0028 -lphool
0029
0030
0031 BUILT_SOURCES = testexternals.cc
0032
0033 noinst_PROGRAMS = \
0034 testexternals
0035
0036 testexternals_SOURCES = testexternals.cc
0037
0038 testexternals_io_SOURCES = testexternals.cc
0039 testexternals_io_LDADD = libkfparticleqa.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)