summaryrefslogtreecommitdiff
blob: 2f2d3050a2eebd1944223d7fe848b0c95c7fe8be (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
INCLUDES = \
	-I$(top_srcdir)           \
	-I$(top_srcdir)/include   \
	-I$(top_builddir)/include

LIBRCUTIL = $(top_builddir)/librcutil/librcutil.la
LIBRCCORE = $(top_builddir)/librccore/librccore.la

TESTS = \
	test-dynbuf \
	test-mmap   \
	test-regex

noinst_PROGRAMS = \
	test-runlevels \
	test-services  \
	$(TESTS)

test_dynbuf_LDADD = $(LIBRCUTIL)
test_dynbuf_SOURCES = test-dynbuf.c

test_mmap_LDADD = $(LIBRCUTIL)
test_mmap_SOURCES = test-mmap.c

test_regex_LDADD = $(LIBRCUTIL)
test_regex_SOURCES = test-regex.c

test_runlevels_LDADD = $(LIBRCCORE)
test_runlevels_SOURCES = test-runlevels.c

test_services_LDADD = $(LIBRCCORE)
test_services_SOURCES = test-services.c