aboutsummaryrefslogtreecommitdiff
path: root/tests/Makefile.am
blob: 8f290f914632151297e491ffde57637b70858ed9 (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

DBUS_RUNNER=/home/ted/Development/dbus-fun/dbus-test-runner --dbus-config /home/ted/Development/dbus-fun/session.conf

TESTS = \
	test_simple

test_simple: test_simple_c test_simple_s
	$(DBUS_RUNNER) --task ./test_simple_c --task-name Client --task ./test_simple_s --task-name Server

test_simple_c_SOURCES = \
	test-simple-c.c

test_simple_c_CFLAGS = \
	$(LIBINDICATE_CFLAGS) -I$(srcdir)/..

test_simple_c_LDADD = \
	../libindicate/libindicate.la \
	$(LIBINDICATE_LIBS)

test_simple_s_SOURCES = \
	test-simple-s.c

test_simple_s_CFLAGS = \
	$(LIBINDICATE_CFLAGS) -I$(srcdir)/..

test_simple_s_LDADD = \
	../libindicate/libindicate.la \
	$(LIBINDICATE_LIBS)