blob: d4224393a595109feddad99a8e33c4f82b44a7f1 (
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
|
AM_CPPFLAGS = \
@MARCO_CFLAGS@ \
$(WARN_CFLAGS)
wm_tester_SOURCES= \
main.c
test_gravity_SOURCES= \
test-gravity.c
focus_window_SOURCES= \
focus-window.c
test_resizing_SOURCES= \
test-resizing.c
test_size_hints_SOURCES= \
test-size-hints.c
noinst_PROGRAMS=wm-tester test-gravity test-resizing focus-window test-size-hints
wm_tester_LDADD= @MARCO_LIBS@
test_gravity_LDADD= @MARCO_LIBS@
test_resizing_LDADD= @MARCO_LIBS@
test_size_hints_LDADD= @MARCO_LIBS@
focus_window_LDADD= @MARCO_LIBS@
EXTRA_DIST= \
meson.build
-include $(top_srcdir)/git.mk
|