Back to home page

sPhenix code displayed by LXR

 
 

    


File indexing completed on 2025-08-05 08:14:31

0001 AUTOMAKE_OPTIONS = foreign
0002 
0003 AM_CPPFLAGS = \
0004   -I$(includedir) \
0005   -I$(OFFLINE_MAIN)/include \
0006   -I$(ROOTSYS)/include
0007 
0008 AM_LDFLAGS = \
0009   -L$(libdir) \
0010   -L$(OFFLINE_MAIN)/lib \
0011   -L$(OFFLINE_MAIN)/lib64 \
0012    -lHepMC \
0013   -lCLHEP \
0014   -lg4vertex_io \
0015   -lcalo_io \
0016   -lg4dst \
0017   -lg4eval
0018 
0019 pkginclude_HEADERS = \
0020   pi0ClusterAna.h
0021 
0022 lib_LTLIBRARIES = \
0023   libpi0ClusterAna.la
0024 
0025 libpi0ClusterAna_la_SOURCES = \
0026   pi0ClusterAna.cc
0027 
0028 libpi0ClusterAna_la_LIBADD = \
0029   -lphool \
0030   -lSubsysReco
0031 
0032 BUILT_SOURCES = testexternals.cc
0033 
0034 noinst_PROGRAMS = \
0035   testexternals
0036 
0037 testexternals_SOURCES = testexternals.cc
0038 testexternals_LDADD   = libpi0ClusterAna.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)