mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-11-06 05:11:14 +00:00
9262d88e28
* src/Makefile.am: Create a convenience library, libvirt_test.la, and don't restrict access to *its* symbols. * tests/Makefile.am (LDADDS): Add ../src/libvirt_test.la, so that "configure --disable-shared" no longer provokes link errors. (LIBVIRT): Remove definition. (LDADDS): Remove use. ($(LIBVIRT)): Remove rule. (LDADDS): Use the new convenience library instead. (CLEANFILES): Define. * docs/examples/index.py (dump_Makefile): Append $(COVERAGE_LDFLAGS), to the LDADDS definition, to avoid link error with the combination of --enable-test-coverage and --disable-shared. * docs/examples/Makefile.am: Regenerate. * docs/examples/index.html: Likewise. * qemud/Makefile.am (libvirtd_LDFLAGS): Append $(COVERAGE_LDFLAGS). * src/libvirt_sym.version: Remove some SP-before-TAB.
128 lines
3.0 KiB
Makefile
128 lines
3.0 KiB
Makefile
## Process this file with automake to produce Makefile.in
|
|
|
|
SUBDIRS = virshdata confdata sexpr2xmldata \
|
|
xml2sexprdata xmconfigdata xencapsdata
|
|
|
|
INCLUDES = \
|
|
-I$(top_srcdir)/gnulib/lib -I../gnulib/lib \
|
|
-I$(top_builddir)/include \
|
|
-I$(top_builddir)/src \
|
|
-I$(top_srcdir)/include \
|
|
-I$(top_srcdir)/src \
|
|
$(LIBXML_CFLAGS) \
|
|
$(GNUTLS_CFLAGS) \
|
|
$(SASL_CFLAGS) \
|
|
$(SELINUX_CFLAGS) \
|
|
-D_XOPEN_SOURCE=600 -D_POSIX_C_SOURCE=199506L \
|
|
-DGETTEXT_PACKAGE=\"$(PACKAGE)\" \
|
|
$(COVERAGE_CFLAGS) \
|
|
$(WARN_CFLAGS) \
|
|
$(LIBVIRT_FEATURES)
|
|
|
|
LDADDS = \
|
|
@STATIC_BINARIES@ \
|
|
$(LIBXML_LIBS) \
|
|
$(GNUTLS_LIBS) \
|
|
$(SASL_LIBS) \
|
|
$(SELINUX_LIBS) \
|
|
$(WARN_CFLAGS) \
|
|
../src/libvirt_test.la \
|
|
../gnulib/lib/libgnu.la \
|
|
$(COVERAGE_LDFLAGS)
|
|
|
|
EXTRA_DIST = \
|
|
xmlrpcserver.py \
|
|
test_conf.sh \
|
|
qemuxml2argvdata \
|
|
nodeinfodata
|
|
|
|
noinst_PROGRAMS = xmlrpctest xml2sexprtest sexpr2xmltest virshtest conftest \
|
|
reconnect xmconfigtest xencapstest qemuxml2argvtest qemuxml2xmltest \
|
|
nodeinfotest statstest
|
|
|
|
test_scripts = \
|
|
daemon-conf \
|
|
int-overflow
|
|
|
|
EXTRA_DIST += $(test_scripts)
|
|
|
|
TESTS = xml2sexprtest sexpr2xmltest virshtest test_conf.sh xmconfigtest \
|
|
xencapstest qemuxml2argvtest qemuxml2xmltest nodeinfotest \
|
|
statstest $(test_scripts)
|
|
if ENABLE_XEN_TESTS
|
|
TESTS += reconnect
|
|
endif
|
|
|
|
# NB, automake < 1.10 does not provide the real
|
|
# abs_top_{src/build}dir variables, so don't rely
|
|
# on them here. Fake them with 'pwd'
|
|
TESTS_ENVIRONMENT = \
|
|
abs_top_builddir=`pwd`/'$(top_builddir)' \
|
|
abs_top_srcdir=`pwd`/'$(top_srcdir)' \
|
|
PATH="$$abs_top_builddir/qemud$(PATH_SEPARATOR)$$PATH" \
|
|
$(VG)
|
|
|
|
valgrind:
|
|
$(MAKE) check VG="valgrind --quiet --leak-check=full"
|
|
|
|
# Note: xmlrpc.[c|h] is not in libvirt yet
|
|
xmlrpctest_SOURCES = \
|
|
xmlrpctest.c \
|
|
testutils.c testutils.h \
|
|
@top_srcdir@/src/xmlrpc.c \
|
|
@top_srcdir@/src/xmlrpc.h
|
|
|
|
xmlrpctest_LDADD = $(LDADDS)
|
|
|
|
xml2sexprtest_SOURCES = \
|
|
xml2sexprtest.c \
|
|
testutils.c testutils.h
|
|
xml2sexprtest_LDADD = $(LDADDS)
|
|
|
|
sexpr2xmltest_SOURCES = \
|
|
sexpr2xmltest.c \
|
|
testutils.c testutils.h
|
|
sexpr2xmltest_LDADD = $(LDADDS)
|
|
|
|
xmconfigtest_SOURCES = \
|
|
xmconfigtest.c \
|
|
testutils.c testutils.h
|
|
xmconfigtest_LDADD = $(LDADDS)
|
|
|
|
qemuxml2argvtest_SOURCES = \
|
|
qemuxml2argvtest.c \
|
|
testutils.c testutils.h
|
|
qemuxml2argvtest_LDADD = $(LDADDS)
|
|
|
|
qemuxml2xmltest_SOURCES = \
|
|
qemuxml2xmltest.c \
|
|
testutils.c testutils.h
|
|
qemuxml2xmltest_LDADD = $(LDADDS)
|
|
|
|
virshtest_SOURCES = \
|
|
virshtest.c \
|
|
testutils.c testutils.h
|
|
virshtest_LDADD = $(LDADDS)
|
|
|
|
conftest_SOURCES = \
|
|
conftest.c
|
|
conftest_LDADD = $(LDADDS)
|
|
|
|
xencapstest_SOURCES = \
|
|
xencapstest.c testutils.h testutils.c
|
|
xencapstest_LDADD = $(LDADDS)
|
|
|
|
nodeinfotest_SOURCES = \
|
|
nodeinfotest.c testutils.h testutils.c
|
|
nodeinfotest_LDADD = $(LDADDS)
|
|
|
|
statstest_SOURCES = \
|
|
statstest.c testutils.h testutils.c
|
|
statstest_LDADD = $(LDADDS)
|
|
|
|
reconnect_SOURCES = \
|
|
reconnect.c
|
|
reconnect_LDADD = $(LDADDS)
|
|
|
|
CLEANFILES = *.cov *.gcov .libs/*.gcda .libs/*.gcno *.gcno *.gcda
|