Back to home page

sPhenix code displayed by LXR

 
 

    


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

0001 AUTOMAKE_OPTIONS = foreign
0002 
0003 AM_CPPFLAGS = \
0004   -I$(includedir) \
0005   -I$(OFFLINE_MAIN)/include  \
0006   -isystem`root-config --incdir`
0007 
0008 lib_LTLIBRARIES = \
0009    libcentralityvalid.la
0010 
0011 AM_LDFLAGS = \
0012   -L$(libdir) \
0013   -L$(OFFLINE_MAIN)/lib \
0014   -L$(ROOTSYS)/lib
0015 
0016 libcentralityvalid_la_LIBADD = \
0017   -lfun4all \
0018   -lcentrality \
0019   -lcalotrigger
0020 
0021 pkginclude_HEADERS = \
0022   CentralityValid.h
0023 
0024 libcentralityvalid_la_SOURCES = \
0025   CentralityValid.cc
0026 
0027 # Rule for generating table CINT dictionaries.
0028 %_Dict.cc: %.h %LinkDef.h
0029         rootcint -f $@ @CINTDEFS@ $(DEFAULT_INCLUDES) $(AM_CPPFLAGS) $^
0030 
0031 #just to get the dependency
0032 %_Dict_rdict.pcm: %_Dict.cc ;
0033 
0034 ################################################
0035 # linking tests
0036 BUILT_SOURCES = testexternals.cc
0037 
0038 noinst_PROGRAMS = \
0039   testexternals_centralityvalid
0040 
0041 testexternals_centralityvalid_SOURCES = testexternals.cc
0042 testexternals_centralityvalid_LDADD = libcentralityvalid.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 *Dict* $(BUILT_SOURCES) *.pcm