2012-03-03 07:03:16 +08:00
|
|
|
TESTS = $(check_PROGRAMS)
|
|
|
|
|
2012-03-03 12:42:46 +08:00
|
|
|
|
2012-04-13 21:53:15 +08:00
|
|
|
check_PROGRAMS = \
|
|
|
|
array-test \
|
|
|
|
map-test \
|
|
|
|
list-test \
|
|
|
|
connection-test \
|
|
|
|
event-loop-test \
|
|
|
|
client-test
|
2012-03-03 07:03:16 +08:00
|
|
|
|
2012-03-04 06:32:59 +08:00
|
|
|
map_test_SOURCES = map-test.c test-runner.c test-runner.h
|
2012-03-03 07:03:16 +08:00
|
|
|
array_test_SOURCES = array-test.c test-runner.c
|
2012-03-06 10:38:25 +08:00
|
|
|
list_test_SOURCES = list-test.c test-runner.c
|
2012-03-03 12:42:46 +08:00
|
|
|
connection_test_SOURCES = connection-test.c test-runner.c
|
2012-03-14 20:47:40 +08:00
|
|
|
event_loop_test_SOURCES = event-loop-test.c test-runner.c
|
2012-04-13 21:53:15 +08:00
|
|
|
client_test_SOURCES = client-test.c test-runner.c
|
2012-03-03 12:42:46 +08:00
|
|
|
|
|
|
|
AM_CFLAGS = $(GCC_CFLAGS)
|
2012-03-14 20:47:40 +08:00
|
|
|
LDADD = $(top_builddir)/src/libwayland-util.la \
|
|
|
|
$(top_builddir)/src/libwayland-server.la \
|
2012-03-24 01:01:23 +08:00
|
|
|
-lrt -ldl $(FFI_LIBS)
|
2012-03-03 07:03:16 +08:00
|
|
|
|