Back to home page

sPhenix code displayed by LXR

 
 

    


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

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