blob: 1ffd63e670b19cd9344006693508f1c878b732a9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
SUBDIRS = lib . core interfaces manual
DIST_SUBDIRS = lib core interfaces manual
INCLUDES = \
-I$(top_srcdir) \
-I$(top_builddir) \
-I$(top_builddir)/dbus \
$(DBUS_CFLAGS)
if DBUS_BUILD_TESTS
TEST_BINARIES=test-service
else
TEST_BINARIES=
endif
noinst_PROGRAMS= $(TEST_BINARIES)
test_service_SOURCES= \
test-service.c
test_service_LDADD=$(DBUS_LIBS)
EXTRA_DIST = data/nested-introspect.xml test-compile-nested.sh
TESTS_ENVIRONMENT=top_builddir=$(top_builddir) srcdir=$(srcdir)
TESTS = test-compile-nested.sh
|