summaryrefslogtreecommitdiff
path: root/test/manual/Makefile.am
blob: b028b6c608e353e1e0780587fb32c099bca7772c (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
27
28
29
30
31
32
AM_CPPFLAGS = \
	-I$(top_srcdir) \
	-I$(top_builddir) \
	-I$(top_srcdir)/test/core \
	-I$(top_builddir)/test/core \
	$(DBUS_CFLAGS) \
	$(DBUS_GLIB_CFLAGS) \
	$(NULL)

LDADD = \
	$(top_builddir)/dbus/libdbus-glib-1.la \
	$(DBUS_LIBS) \
	$(DBUS_GLIB_LIBS) \
	$(NULL)

noinst_PROGRAMS = \
	$(NULL)

if DBUS_BUILD_TESTS
noinst_PROGRAMS += \
	test-invalid-usage \
	$(NULL)
endif

# This "test" exercises invalid usage. It is deliberately not run in
# TESTS, because it's (by design) full of bugs.
test_invalid_usage_SOURCES = \
	../core/my-object-marshal.c \
	../core/my-object-marshal.h \
	../core/my-object.c \
	../core/my-object.h \
	invalid-usage.c