blob: e6896b80fc08cd997e2bd9a4f1c870b2924dc1c7 (
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
|
include $(top_srcdir)/Makefile.decl
check_PROGRAMS = $(TEST_PROGS)
INCLUDES = \
-I$(top_srcdir) \
-I$(top_builddir)/gdk \
-I$(top_srcdir)/gdk \
-DGDK_DISABLE_DEPRECATED \
-DGTK_DISABLE_DEPRECATED \
$(GTK_DEBUG_FLAGS) \
$(GTK_DEP_CFLAGS)
LDADD = \
$(top_builddir)/gdk/libgdk-3.la \
$(top_builddir)/gtk/libgtk-3.la \
$(GTK_DEP_LIBS)
TEST_PROGS += accessibility-dump
accessibility_dump_SOURCES = \
accessibility-dump.c
TEST_PROGS += tree-performance
tree_performance_SOURCES = \
tree-performance.c
TEST_PROGS += text
text_SOURCES = \
text.c
EXTRA_DIST += \
hello-world.ui hello-world.txt \
mnemonic.ui mnemonic.txt \
accessible-name.ui accessible-name.txt \
notebook.ui notebook.txt \
range.ui range.txt \
link.ui link.txt \
text.ui text.txt \
tree.ui tree.txt \
buttons.ui buttions.txt \
colorchooser.ui colorchooser.txt \
about.ui about.txt \
appchooser.ui appchooser.txt \
messagedialog.ui messagedialog.txt \
expander.ui expander.txt \
assistant.ui assistant.txt \
pickers.ui pickers.txt \
lockbutton.ui lockbutton.txt \
spinner.ui spinner.txt \
progress.ui progress.txt \
infobar.ui infobar.txt \
calendar.ui calendar.txt \
statusbar.ui statusbar.txt \
paned.ui paned.txt \
iconview.ui iconview.txt \
entries.ui entries.txt \
scale-drawvalue.ui scale-drawvalue.txt
|