summaryrefslogtreecommitdiff
path: root/examples/Makefile.am
blob: c55a6a8e1e92e47905317174f17c32eca0c3a9c6 (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
61
62
63
64
65

# these have a handrolled Makefile that gets in the way of distchecking
# so they will not be included in tarballs until they get integrated
# in the new 'getting started' section of the docs
OLD_EXAMPLES = \
		arrow \
		aspectframe \
		base \
		buttonbox \
		buttons \
		calendar \
		entry \
		eventbox \
		fixed \
		frame \
		gtkdial \
		helloworld \
		helloworld2 \
		label \
		menu \
		notebook \
		packbox \
		paned \
		progressbar \
		radiobuttons \
		rangewidgets \
		rulers \
		scribble-simple \
		scribble-xinput \
		scrolledwin \
		selection \
		spinbutton \
		statusbar \
		table \
		tictactoe \
		wheelbarrow

AM_CPPFLAGS = \
	-I$(top_srcdir)				\
	-I$(top_srcdir)/gdk			\
	-I$(top_builddir)/gdk			\
	-DGDK_DISABLE_DEPRECATED		\
	-DGTK_DISABLE_DEPRECATED		\
	$(GTK_DEBUG_FLAGS)			\
	$(GTK_DEP_CFLAGS)

LDADD = \
	$(top_builddir)/gtk/libgtk-3.la	\
	$(top_builddir)/gdk/libgdk-3.la \
	$(GTK_DEP_LIBS)

noinst_PROGRAMS = \
	hello-world				\
	window-default				\
	bloatpad				\
	plugman					\
	sunny					\
	action-namespace			\
	grid-packing				\
	drawing					\
	builder

EXTRA_DIST = builder.ui

-include $(top_srcdir)/git.mk