Back to home page

sPhenix code displayed by LXR

 
 

    


File indexing completed on 2025-08-05 08:15:04

0001 AUTOMAKE_OPTIONS = foreign
0002 
0003 lib_LTLIBRARIES = \
0004     libruntowerinfo.la
0005 
0006 AM_LDFLAGS = \
0007   -L$(libdir) \
0008   -L$(OFFLINE_MAIN)/lib
0009 
0010 AM_CPPFLAGS = \
0011   -I$(includedir) \
0012   -I$(OFFLINE_MAIN)/include \
0013   -isystem$(ROOTSYS)/include
0014 
0015 pkginclude_HEADERS = \
0016         SaveTowerInfo.h \
0017   RunTowerInfo.h
0018 
0019 libruntowerinfo_la_SOURCES = \
0020   SaveTowerInfo.cc \
0021   RunTowerInfo.cc
0022 
0023 libruntowerinfo_la_LDFLAGS = \
0024   -L$(libdir) \
0025   -L$(OFFLINE_MAIN)/lib \
0026         -lfun4all \
0027   -lcalo_io
0028 
0029 ################################################
0030 # linking tests
0031 
0032 BUILT_SOURCES = testexternals.cc
0033 
0034 noinst_PROGRAMS = \
0035   testexternals
0036 
0037 testexternals_SOURCES = testexternals.cc
0038 testexternals_LDADD = libruntowerinfo.la
0039 
0040 testexternals.cc:
0041         echo "//*** this is a generated file. Do not commit, do not edit" > $@
0042         echo "int main()" >> $@
0043         echo "{" >> $@
0044         echo "  return 0;" >> $@
0045         echo "}" >> $@
0046 
0047 clean-local:
0048         rm -f $(BUILT_SOURCES)