Back to home page

sPhenix code displayed by LXR

 
 

    


File indexing completed on 2025-08-14 08:14:26

0001 AUTOMAKE_OPTIONS = foreign
0002 
0003 AM_CPPFLAGS = \
0004   -I$(includedir) \
0005   -isystem$(OFFLINE_MAIN)/include \
0006   -isystem$(ROOTSYS)/include
0007 
0008 lib_LTLIBRARIES = \
0009   libLaserClusterQA.la
0010 
0011 AM_LDFLAGS = \
0012   -L$(libdir) \
0013   -L$(ROOTSYS)/lib \
0014   -L$(OFFLINE_MAIN)/lib \
0015   -L$(OFFLINE_MAIN)/lib64 
0016 
0017 libLaserClusterQA_la_LIBADD = \
0018   -lfun4all \
0019   -lFROG \
0020   -lffaobjects \
0021   -lphool \
0022   -lSubsysReco \
0023   -lg4detectors_io \
0024   -ltrack_io \
0025   -ltrackbase_historic_io \
0026   -ltrack_reco \
0027   -ltpc_io
0028 
0029 libLaserClusterQA_la_SOURCES = \
0030   laserClusterQA.cc \
0031   laserQA.cc \
0032   laserQA_multiple.cc \
0033   laminationClusterQA.cc
0034 
0035 pkginclude_HEADERS = \
0036   laserClusterQA.h \
0037   laserQA.h \
0038   laserQA_multiple.h \
0039   laminationClusterQA.h
0040 
0041 BUILT_SOURCES = testexternals.cc
0042 
0043 noinst_PROGRAMS = \
0044   testexternals
0045 
0046 testexternals_SOURCES = testexternals.cc
0047 testexternals_LDADD   = libLaserClusterQA.la
0048 
0049 testexternals.cc:
0050         echo "//*** this is a generated file. Do not commit, do not edit" > $@
0051         echo "int main()" >> $@
0052         echo "{" >> $@
0053         echo "  return 0;" >> $@
0054         echo "}" >> $@
0055 
0056 clean-local:
0057         rm -f $(BUILT_SOURCES)