File indexing completed on 2025-08-05 08:20:24
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 libonlcemcmon_client.la \
0015 libonlcemcmon_server.la
0016
0017 libonlcemcmon_server_la_LIBADD = \
0018 -L$(libdir) \
0019 -L$(ONLINE_MAIN)/lib \
0020 -lonlmonserver \
0021 -lonlmonutils \
0022 -lcalo_io \
0023 -lcalo_reco \
0024 -lcdbobjects
0025
0026 libonlcemcmon_client_la_LIBADD = \
0027 -L$(libdir) \
0028 -L$(ONLINE_MAIN)/lib \
0029 -lonlmonclient
0030
0031 cemcincludedir=$(pkgincludedir)/cemc
0032
0033 cemcinclude_HEADERS = \
0034 CemcMon.h \
0035 CemcMonDraw.h
0036
0037 libonlcemcmon_server_la_SOURCES = \
0038 CemcMon.cc
0039
0040 libonlcemcmon_client_la_SOURCES = \
0041 CemcMonDraw.cc
0042
0043 bin_SCRIPTS = \
0044 CemcMonSetup.csh \
0045 CemcMonSetup.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 libonlcemcmon_server.la
0060
0061 testexternals_client_LDADD = \
0062 libonlcemcmon_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)