blob: 36818b83a89eefcdb43713579d4bd4dc7174e955 (
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
33
|
TESTS = \
test_simple
libexec_PROGRAMS = \
test-simple-client \
test-simple-server
EXTRA_DIST = \
$(TESTS)
test_simple: test-simple-client test-simple-server
test_simple_client_SOURCES = \
test-simple-client.c
test_simple_client_CFLAGS = \
$(LIBINDICATE_CFLAGS) -I$(srcdir)/..
test_simple_client_LDADD = \
../libindicate/libindicate.la \
$(LIBINDICATE_LIBS)
test_simple_server_SOURCES = \
test-simple-server.c
test_simple_server_CFLAGS = \
$(LIBINDICATE_CFLAGS) -I$(srcdir)/..
test_simple_server_LDADD = \
../libindicate/libindicate.la \
$(LIBINDICATE_LIBS)
|