wayland/tests/Makefile.am

28 lines
754 B
Makefile
Raw Normal View History

TESTS = $(check_PROGRAMS)
2012-03-03 12:42:46 +08:00
2012-04-13 21:53:15 +08:00
check_PROGRAMS = \
sanity-test \
2012-04-13 21:53:15 +08:00
array-test \
map-test \
list-test \
connection-test \
event-loop-test \
client-test
test_runner_src = test-runner.c test-runner.h
sanity_test_SOURCES = sanity-test.c $(test_runner_src)
map_test_SOURCES = map-test.c $(test_runner_src)
array_test_SOURCES = array-test.c $(test_runner_src)
list_test_SOURCES = list-test.c $(test_runner_src)
connection_test_SOURCES = connection-test.c $(test_runner_src)
event_loop_test_SOURCES = event-loop-test.c $(test_runner_src)
client_test_SOURCES = client-test.c $(test_runner_src)
2012-03-03 12:42:46 +08:00
AM_CFLAGS = $(GCC_CFLAGS)
LDADD = $(top_builddir)/src/libwayland-util.la \
$(top_builddir)/src/libwayland-server.la \
-lrt -ldl $(FFI_LIBS)