File indexing completed on 2025-08-03 08:21:07
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$(OFFLINE_MAIN)/include \
0012 -isystem$(ROOTSYS)/include
0013
0014 AM_LDFLAGS = \
0015 -L$(libdir) \
0016 -L$(ONLINE_MAIN)/lib \
0017 -L$(OFFLINE_MAIN)/lib
0018
0019 lib_LTLIBRARIES = \
0020 libonltpotmon_client.la \
0021 libonltpotmon_server.la
0022
0023 libonltpotmon_server_la_LIBADD = \
0024 -lmicromegas_io \
0025 -lonlmonserver \
0026 -lonlmondb
0027
0028 libonltpotmon_client_la_LIBADD = \
0029 -lmicromegas_io \
0030 -lonlmonclient \
0031 -lonlmondb
0032
0033
0034 tpotincludedir=$(pkgincludedir)/tpot
0035
0036 tpotinclude_HEADERS = \
0037 TpotMon.h \
0038 TpotMonDraw.h \
0039 MicromegasGeometry.h
0040
0041 libonltpotmon_server_la_SOURCES = \
0042 TpotMon.cc \
0043 MicromegasGeometry.cc
0044
0045 libonltpotmon_client_la_SOURCES = \
0046 TpotMonDraw.cc \
0047 MicromegasGeometry.cc
0048
0049 bin_SCRIPTS = \
0050 TpotMonSetup.csh \
0051 TpotMonSetup.sh
0052
0053 noinst_PROGRAMS = \
0054 testexternals_server \
0055 testexternals_client
0056
0057 testexternals_server_SOURCES = \
0058 testexternals.cc
0059
0060 testexternals_client_SOURCES = \
0061 testexternals.cc
0062
0063 testexternals_server_LDADD = \
0064 libonltpotmon_server.la
0065
0066 testexternals_client_LDADD = \
0067 libonltpotmon_client.la
0068
0069 testexternals.cc:
0070 echo "//*** this is a generated file. Do not commit, do not edit" > $@
0071 echo "int main()" >> $@
0072 echo "{" >> $@
0073 echo " return 0;" >> $@
0074 echo "}" >> $@
0075
0076 clean-local:
0077 rm -f $(BUILT_SOURCES)