File indexing completed on 2025-08-05 08:15:18
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 TrackDeadLayerTagging.h
0015
0016 lib_LTLIBRARIES = \
0017 libtrackdeadlayertagging.la
0018
0019 libtrackdeadlayertagging_la_SOURCES = \
0020 TrackDeadLayerTagging.cc
0021
0022 libtrackdeadlayertagging_la_LIBADD = \
0023 -lphool \
0024 -ltrack_io \
0025 -lg4detectors \
0026 -lintt \
0027 -lmvtx \
0028 -ltpc \
0029 -lmicromegas \
0030 -lglobalvertex \
0031 -ltrackbase_historic_io \
0032 -ltrack_reco \
0033 -lSubsysReco
0034
0035 BUILT_SOURCES = testexternals.cc
0036
0037 noinst_PROGRAMS = \
0038 testexternals
0039
0040 testexternals_SOURCES = testexternals.cc
0041 testexternals_LDADD = libtrackdeadlayertagging.la
0042
0043 testexternals.cc:
0044 echo "//*** this is a generated file. Do not commit, do not edit" > $@
0045 echo "int main()" >> $@
0046 echo "{" >> $@
0047 echo " return 0;" >> $@
0048 echo "}" >> $@
0049
0050 clean-local:
0051 rm -f $(BUILT_SOURCES)