Back to home page

sPhenix code displayed by LXR

 
 

    


File indexing completed on 2025-08-05 08:16:05

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