Back to home page

sPhenix code displayed by LXR

 
 

    


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

0001 AUTOMAKE_OPTIONS = foreign
0002 
0003 AM_CPPFLAGS = \
0004   -I$(includedir) \
0005   -isystem$(OFFLINE_MAIN)/include \
0006   -isystem`root-config --incdir`
0007 
0008 pkginclude_HEADERS = \
0009   ClusterIso.h
0010 
0011 libclusteriso_la_LDFLAGS = \
0012   -L$(libdir) \
0013   -L$(OFFLINE_MAIN)/lib \
0014   `root-config --libs`
0015 
0016 lib_LTLIBRARIES = \
0017   libclusteriso.la
0018 
0019 libclusteriso_la_SOURCES = \
0020   ClusterIso.cc
0021 
0022 libclusteriso_la_LIBADD = \
0023   -lcalo_io \
0024   -lglobalvertex_io \
0025   -lSubsysReco \
0026   -lCLHEP
0027 
0028 noinst_PROGRAMS = \
0029   testexternals
0030 
0031 BUILT_SOURCES = \
0032   testexternals.cc
0033 
0034 testexternals_SOURCES = \
0035   testexternals.cc
0036 
0037 
0038 testexternals_LDADD = \
0039   libclusteriso.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 clean-local:
0049         rm -f $(BUILT_SOURCES)