Back to home page

sPhenix code displayed by LXR

 
 

    


File indexing completed on 2025-08-06 08:18:49

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   MvtxClusterQA.h \
0015   InttClusterQA.h \
0016   TpcClusterQA.h \
0017   TpcSeedsQA.h \
0018   TpcSiliconQA.h \
0019   SiliconSeedsQA.h \
0020   MicromegasClusterQA.h \
0021   CosmicTrackQA.h \
0022   TrackFittingQA.h \
0023   VertexQA.h
0024 
0025 lib_LTLIBRARIES = \
0026   libtrackingqa.la
0027 
0028 libtrackingqa_la_SOURCES = \
0029   MvtxClusterQA.cc \
0030   InttClusterQA.cc \
0031   TpcClusterQA.cc \
0032   TpcSeedsQA.cc \
0033   TpcSiliconQA.cc \
0034   SiliconSeedsQA.cc \
0035   MicromegasClusterQA.cc \
0036   CosmicTrackQA.cc \
0037   TrackFittingQA.cc \
0038   VertexQA.cc
0039 
0040 libtrackingqa_la_LIBADD = \
0041   -lphool \
0042   -lSubsysReco \
0043   -lg4tpc \
0044   -lg4intt \
0045   -lg4mvtx \
0046   -lmicromegas_io \
0047   -lmvtx_io \
0048   -lintt_io \
0049   -ltrack_io \
0050   -ltrackbase_historic_io \
0051   -ltrack_reco \
0052   -lqautils
0053 
0054 BUILT_SOURCES = testexternals.cc
0055 
0056 noinst_PROGRAMS = \
0057   testexternals
0058 
0059 testexternals_SOURCES = testexternals.cc
0060 testexternals_LDADD   = libtrackingqa.la
0061 
0062 testexternals.cc:
0063         echo "//*** this is a generated file. Do not commit, do not edit" > $@
0064         echo "int main()" >> $@
0065         echo "{" >> $@
0066         echo "  return 0;" >> $@
0067         echo "}" >> $@
0068 
0069 clean-local:
0070         rm -f $(BUILT_SOURCES)