summaryrefslogtreecommitdiff
path: root/examples/Makefile.am
blob: cb80c9ff34d1ab995c097f7c2129f4ef1acc5687 (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
include $(top_srcdir)/build/autotools/Makefile.am.silent

all_examples = \
	basic-actor \
	box-layout \
	canvas \
	constraints \
	drag-action \
	drop-action \
	easing-modes \
	flow-layout \
	grid-layout \
	layout-manager \
	pan-action \
	rounded-rectangle \
	scroll-actor \
	threads

if PIXBUF_TESTS
all_examples += \
	bin-layout \
	image-content
endif

LDADD = \
	$(top_builddir)/clutter/libclutter-@CLUTTER_API_VERSION@.la \
	$(CLUTTER_LIBS) \
	$(GDK_PIXBUF_LIBS) \
	-lm

AM_CFLAGS = $(CLUTTER_CFLAGS) $(GDK_PIXBUF_CFLAGS) $(MAINTAINER_CFLAGS)

AM_CPPFLAGS = \
	-DG_DISABLE_SINGLE_INCLUDES \
	-DGLIB_DISABLE_DEPRECATION_WARNINGS \
	-I$(top_srcdir)	\
	-I$(top_builddir) \
	-I$(top_srcdir)/clutter \
	-I$(top_builddir)/clutter

noinst_PROGRAMS = $(all_examples)

EXTRA_DIST = redhand.png

-include $(top_srcdir)/build/autotools/Makefile.am.gitignore