Back to home page

sPhenix code displayed by LXR

 
 

    


File indexing completed on 2025-08-05 08:12:19

0001 ##############################################
0002 # please add new classes in alphabetical order
0003 
0004 AUTOMAKE_OPTIONS = foreign
0005 
0006 # List of shared libraries to produce
0007 lib_LTLIBRARIES = \
0008   libledtowerbuilder.la 
0009 
0010 #
0011 libledtowerbuilder_la_LDFLAGS = \
0012   -L$(libdir) \
0013   -L$(OFFLINE_MAIN)/lib64 \
0014   -L$(OFFLINE_MAIN)/lib
0015 
0016 libledtowerbuilder_la_LIBADD = \
0017   -lcalo_reco
0018 
0019 AM_CPPFLAGS = \
0020   -I$(includedir) \
0021   -I$(OFFLINE_MAIN)/include \
0022   -isystem$(ROOTSYS)/include
0023 
0024 pkginclude_HEADERS = \
0025   LEDTowerBuilder.h 
0026 
0027 libledtowerbuilder_la_SOURCES = \
0028   LEDTowerBuilder.cc
0029 
0030 ################################################
0031 # linking tests
0032 
0033 noinst_PROGRAMS = \
0034   testexternals_ledtowerbuilder
0035 
0036 BUILT_SOURCES  = testexternals.cc
0037 
0038 testexternals_ledtowerbuilder_SOURCES = testexternals.cc
0039 testexternals_ledtowerbuilder_LDADD = libledtowerbuilder.la
0040 
0041 testexternals.cc:
0042         echo "//*** this is a generated file. Do not commit, do not edit" > $@
0043         echo "int main()" >> $@
0044         echo "{" >> $@
0045         echo "  return 0;" >> $@
0046         echo "}" >> $@
0047 
0048 ##############################################
0049 # please add new classes in alphabetical order
0050 
0051 clean-local:
0052         rm -f $(BUILT_SOURCES)