Back to home page

sPhenix code displayed by LXR

 
 

    


File indexing completed on 2025-08-05 08:20:27

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   libonlmvtxmon_client.la \
0015   libonlmvtxmon_server.la
0016 
0017 libonlmvtxmon_server_la_LIBADD = \
0018   -L$(libdir) \
0019   -L$(ONLINE_MAIN)/lib \
0020   -lonlmonserver \
0021   -lonlmondb 
0022 
0023 libonlmvtxmon_client_la_LIBADD = \
0024   -L$(libdir) \
0025   -L$(ONLINE_MAIN)/lib \
0026   -lonlmonclient \
0027   -lonlmondb
0028 
0029 
0030 mvtxincludedir=$(pkgincludedir)/mvtx
0031 
0032 mvtxinclude_HEADERS = \
0033   MvtxMon.h \
0034   MvtxMonDraw.h
0035 
0036 libonlmvtxmon_server_la_SOURCES = \
0037   MvtxMon.cc
0038 
0039 libonlmvtxmon_client_la_SOURCES = \
0040   MvtxMonDraw.cc
0041 
0042 bin_SCRIPTS = \
0043   MvtxMonSetup.csh \
0044   MvtxMonSetup.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   libonlmvtxmon_server.la
0059 
0060 testexternals_client_LDADD = \
0061   libonlmvtxmon_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)