mirror of
https://gitlab.freedesktop.org/wayland/wayland.git
synced 2025-11-03 09:01:42 -05:00
tests: put common test source files in a variable
Makes all test targets have the same common make dependencies. Signed-off-by: Pekka Paalanen <ppaalanen@gmail.com>
This commit is contained in:
parent
b7c7963f16
commit
84464a3e9b
1 changed files with 8 additions and 6 deletions
|
|
@ -9,12 +9,14 @@ check_PROGRAMS = \
|
||||||
event-loop-test \
|
event-loop-test \
|
||||||
client-test
|
client-test
|
||||||
|
|
||||||
map_test_SOURCES = map-test.c test-runner.c test-runner.h
|
test_runner_src = test-runner.c test-runner.h
|
||||||
array_test_SOURCES = array-test.c test-runner.c
|
|
||||||
list_test_SOURCES = list-test.c test-runner.c
|
map_test_SOURCES = map-test.c $(test_runner_src)
|
||||||
connection_test_SOURCES = connection-test.c test-runner.c
|
array_test_SOURCES = array-test.c $(test_runner_src)
|
||||||
event_loop_test_SOURCES = event-loop-test.c test-runner.c
|
list_test_SOURCES = list-test.c $(test_runner_src)
|
||||||
client_test_SOURCES = client-test.c test-runner.c
|
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)
|
||||||
|
|
||||||
AM_CFLAGS = $(GCC_CFLAGS)
|
AM_CFLAGS = $(GCC_CFLAGS)
|
||||||
LDADD = $(top_builddir)/src/libwayland-util.la \
|
LDADD = $(top_builddir)/src/libwayland-util.la \
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue