Back to home page

sPhenix code displayed by LXR

 
 

    


File indexing completed on 2025-08-06 08:17:59

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   QAUtil.h \
0015   QAHistManagerDef.h
0016 
0017 lib_LTLIBRARIES = \
0018   libqautils.la
0019 
0020 libqautils_la_SOURCES = \
0021   QAHistManagerDef.cc
0022 
0023 libqautils_la_LIBADD = \
0024   -lphool \
0025   -lSubsysReco \
0026   -lfun4all
0027 
0028 BUILT_SOURCES = testexternals.cc
0029 
0030 noinst_PROGRAMS = \
0031   testexternals
0032 
0033 testexternals_SOURCES = testexternals.cc
0034 testexternals_LDADD   = libqautils.la
0035 
0036 testexternals.cc:
0037         echo "//*** this is a generated file. Do not commit, do not edit" > $@
0038         echo "int main()" >> $@
0039         echo "{" >> $@
0040         echo "  return 0;" >> $@
0041         echo "}" >> $@
0042 
0043 clean-local:
0044         rm -f $(BUILT_SOURCES)