Back to home page

sPhenix code displayed by LXR

 
 

    


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

0001 AUTOMAKE_OPTIONS = foreign
0002 
0003 BUILT_SOURCES = \
0004   testexternals.cc
0005 
0006 AM_CPPFLAGS = \
0007   -I$(includedir) \
0008   -isystem$(ONLINE_MAIN)/include \
0009   -isystem$(ROOTSYS)/include
0010 
0011 lib_LTLIBRARIES = \
0012   libonlinttmon_client.la \
0013   libonlinttmon_server.la
0014 
0015 libonlinttmon_server_la_LIBADD = \
0016   -L$(libdir) \
0017   -L$(ONLINE_MAIN)/lib \
0018   -lonlmonserver
0019 
0020 
0021 libonlinttmon_client_la_LIBADD = \
0022   -L$(libdir) \
0023   -L$(ONLINE_MAIN)/lib \
0024   -lonlmonclient
0025 
0026 
0027 inttincludedir=$(pkgincludedir)/intt
0028 
0029 inttinclude_HEADERS = \
0030   InttMon.h \
0031   InttMonDraw.h
0032 
0033 libonlinttmon_server_la_SOURCES = \
0034   InttMon.cc
0035 
0036 libonlinttmon_client_la_SOURCES = \
0037   InttMon.cc \
0038   InttMonDraw.cc
0039 
0040 noinst_PROGRAMS = \
0041   testexternals_server \
0042   testexternals_client
0043 
0044 
0045 testexternals_server_SOURCES = \
0046   testexternals.cc
0047 
0048 testexternals_client_SOURCES = \
0049   testexternals.cc
0050 
0051 testexternals_server_LDADD = \
0052   libonlinttmon_server.la
0053 
0054 testexternals_client_LDADD = \
0055   libonlinttmon_client.la
0056 
0057 testexternals.cc:
0058         echo "//*** this is a generated file. Do not commit, do not edit" > $@
0059         echo "int main()" >> $@
0060         echo "{" >> $@
0061         echo "  return 0;" >> $@
0062         echo "}" >> $@
0063 
0064 clean-local:
0065         rm -f $(BUILT_SOURCES)