File indexing completed on 2025-08-05 08:20:33
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 libonlzdcmon_client.la \
0015 libonlzdcmon_server.la
0016
0017 libonlzdcmon_server_la_LIBADD = \
0018 -L$(libdir) \
0019 -L$(ONLINE_MAIN)/lib \
0020 -lonlmonserver \
0021 -lonlmonutils \
0022 -lcalo_io \
0023 -lcalo_reco \
0024 -lonlmondb
0025
0026 libonlzdcmon_client_la_LIBADD = \
0027 -L$(libdir) \
0028 -L$(ONLINE_MAIN)/lib \
0029 -lonlmonclient \
0030 -lonlmondb
0031
0032
0033 zdcincludedir=$(pkgincludedir)/zdc
0034
0035 zdcinclude_HEADERS = \
0036 ZdcMon.h \
0037 ZdcMonDraw.h
0038
0039 libonlzdcmon_server_la_SOURCES = \
0040 ZdcMon.cc
0041
0042 libonlzdcmon_client_la_SOURCES = \
0043 ZdcMonDraw.cc
0044
0045 bin_SCRIPTS = \
0046 ZdcMonSetup.csh \
0047 ZdcMonSetup.sh
0048
0049 noinst_PROGRAMS = \
0050 testexternals_server \
0051 testexternals_client
0052
0053
0054 testexternals_server_SOURCES = \
0055 testexternals.cc
0056
0057 testexternals_client_SOURCES = \
0058 testexternals.cc
0059
0060 testexternals_server_LDADD = \
0061 libonlzdcmon_server.la
0062
0063 testexternals_client_LDADD = \
0064 libonlzdcmon_client.la
0065
0066 testexternals.cc:
0067 echo "//*** this is a generated file. Do not commit, do not edit" > $@
0068 echo "int main()" >> $@
0069 echo "{" >> $@
0070 echo " return 0;" >> $@
0071 echo "}" >> $@
0072
0073 clean-local:
0074 rm -f $(BUILT_SOURCES)