Back to home page

sPhenix code displayed by LXR

 
 

    


File indexing completed on 2025-08-03 08:21:00

0001 AUTOMAKE_OPTIONS = foreign
0002 
0003 BUILT_SOURCES = \
0004   testexternals.cc
0005 
0006 SUBDIRS = calib
0007 
0008 AM_CPPFLAGS = \
0009   -I$(includedir) \
0010   -isystem$(ONLINE_MAIN)/include \
0011   -isystem$(ROOTSYS)/include
0012 
0013 lib_LTLIBRARIES = \
0014   libonldaqmon_client.la \
0015   libonldaqmon_server.la
0016 
0017 libonldaqmon_server_la_LIBADD = \
0018   -L$(libdir) \
0019   -L$(ONLINE_MAIN)/lib \
0020   -lonlmonserver \
0021   -lonlmonutils \
0022   -lonlmondb
0023 
0024 libonldaqmon_client_la_LIBADD = \
0025   -L$(libdir) \
0026   -L$(ONLINE_MAIN)/lib \
0027   -lonlmonclient \
0028   -lonlmondb
0029 
0030 
0031 daqincludedir=$(pkgincludedir)/daq
0032 
0033 daqinclude_HEADERS = \
0034   DaqMon.h \
0035   DaqMonDraw.h
0036 
0037 libonldaqmon_server_la_SOURCES = \
0038   DaqMon.cc
0039 
0040 libonldaqmon_client_la_SOURCES = \
0041   DaqMonDraw.cc
0042 
0043 bin_SCRIPTS = \
0044   DaqMonSetup.csh \
0045   DaqMonSetup.sh
0046 
0047 noinst_PROGRAMS = \
0048   testexternals_server \
0049   testexternals_client
0050 
0051 
0052 testexternals_server_SOURCES = \
0053   testexternals.cc
0054 
0055 testexternals_client_SOURCES = \
0056   testexternals.cc
0057 
0058 testexternals_server_LDADD = \
0059   libonldaqmon_server.la
0060 
0061 testexternals_client_LDADD = \
0062   libonldaqmon_client.la
0063 
0064 testexternals.cc:
0065         echo "//*** this is a generated file. Do not commit, do not edit" > $@
0066         echo "int main()" >> $@
0067         echo "{" >> $@
0068         echo "  return 0;" >> $@
0069         echo "}" >> $@
0070 
0071 clean-local:
0072         rm -f $(BUILT_SOURCES)