Back to home page

sPhenix code displayed by LXR

 
 

    


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

0001 AUTOMAKE_OPTIONS = foreign
0002 
0003 # List of shared libraries to produce
0004 lib_LTLIBRARIES = \
0005   libcdbobjects.la
0006 
0007 AM_CPPFLAGS = \
0008   -I$(includedir) \
0009   -isystem$(OFFLINE_MAIN)/include \
0010   -isystem$(ROOTSYS)/include
0011 
0012 libcdbobjects_la_SOURCES = \
0013   CDBHistos.cc \
0014   CDBTF.cc \
0015   CDBTTree.cc
0016 
0017 libcdbobjects_la_LDFLAGS = \
0018   `root-config --libs`
0019 
0020 ##############################################
0021 # please add new classes in alphabetical order
0022 
0023 pkginclude_HEADERS = \
0024   CDBHistos.h \
0025   CDBTF.h \
0026   CDBTTree.h
0027 
0028 ################################################
0029 # linking tests
0030 
0031 BUILT_SOURCES = testexternals.cc
0032 
0033 noinst_PROGRAMS = \
0034   testexternals
0035 
0036 testexternals_SOURCES = testexternals.cc
0037 testexternals_LDADD = libcdbobjects.la
0038 
0039 testexternals.cc:
0040         echo "//*** this is a generated file. Do not commit, do not edit" > $@
0041         echo "int main()" >> $@
0042         echo "{" >> $@
0043         echo "  return 0;" >> $@
0044         echo "}" >> $@
0045 
0046 ##############################################
0047 # please add new classes in alphabetical order
0048 
0049 clean-local:
0050         rm -f $(BUILT_SOURCES)