Back to home page

sPhenix code displayed by LXR

 
 

    


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

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 
0013 pkginclude_HEADERS = \
0014   caloTowerEmbed.h \
0015   CopyIODataNodes.h \
0016   HepMCCollisionVertex.h
0017 
0018 lib_LTLIBRARIES = \
0019   libCaloEmbedding.la
0020 
0021 libCaloEmbedding_la_SOURCES = \
0022   caloTowerEmbed.cc \
0023   CopyIODataNodes.cc \
0024   HepMCCollisionVertex.cc
0025 
0026 libCaloEmbedding_la_LIBADD = \
0027   -lcalo_io \
0028   -lcalotrigger_io \
0029   -lcentrality_io \
0030   -lfun4all \
0031   -lglobalvertex_io \
0032   -lphhepmc_io \
0033   -lphool \
0034   -lSubsysReco
0035 
0036 BUILT_SOURCES = testexternals.cc
0037 
0038 noinst_PROGRAMS = \
0039   testexternals
0040 
0041 testexternals_SOURCES = testexternals.cc
0042 testexternals_LDADD   = libCaloEmbedding.la
0043 
0044 testexternals.cc:
0045         echo "//*** this is a generated file. Do not commit, do not edit" > $@
0046         echo "int main()" >> $@
0047         echo "{" >> $@
0048         echo "  return 0;" >> $@
0049         echo "}" >> $@
0050 
0051 clean-local:
0052         rm -f $(BUILT_SOURCES)