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