2012-05-01 17:30:10 +00:00
|
|
|
include $(top_srcdir)/build/autotools/Makefile.am.silent
|
|
|
|
|
|
|
|
all_examples = \
|
|
|
|
basic-actor \
|
2012-06-02 13:01:11 +00:00
|
|
|
box-layout \
|
2012-05-01 17:30:10 +00:00
|
|
|
canvas \
|
|
|
|
constraints \
|
|
|
|
drag-action \
|
|
|
|
drop-action \
|
2012-05-02 17:37:36 +00:00
|
|
|
easing-modes \
|
2012-05-02 11:14:45 +00:00
|
|
|
flow-layout \
|
2012-06-03 10:18:37 +00:00
|
|
|
grid-layout \
|
2012-05-04 16:43:30 +00:00
|
|
|
layout-manager \
|
2012-08-25 14:23:23 +00:00
|
|
|
pan-action \
|
2012-05-03 12:53:29 +00:00
|
|
|
rounded-rectangle \
|
2012-05-16 15:12:20 +00:00
|
|
|
scroll-actor \
|
2012-05-01 17:30:10 +00:00
|
|
|
threads
|
|
|
|
|
|
|
|
if PIXBUF_TESTS
|
|
|
|
all_examples += \
|
|
|
|
bin-layout \
|
|
|
|
image-content
|
|
|
|
endif
|
|
|
|
|
|
|
|
INCLUDES = \
|
|
|
|
-I$(top_srcdir) \
|
2012-07-30 11:33:24 +00:00
|
|
|
-I$(top_builddir) \
|
2012-05-01 17:30:10 +00:00
|
|
|
-I$(top_srcdir)/clutter \
|
|
|
|
-I$(top_builddir)/clutter
|
|
|
|
|
|
|
|
LDADD = \
|
|
|
|
$(top_builddir)/clutter/libclutter-@CLUTTER_API_VERSION@.la \
|
|
|
|
$(CLUTTER_LIBS) \
|
|
|
|
$(GDK_PIXBUF_LIBS) \
|
|
|
|
-lm
|
|
|
|
|
2012-06-06 12:39:50 +00:00
|
|
|
AM_CFLAGS = $(CLUTTER_CFLAGS) $(GDK_PIXBUF_CFLAGS) $(MAINTAINER_CFLAGS)
|
2012-05-01 17:30:10 +00:00
|
|
|
|
|
|
|
AM_CPPFLAGS = \
|
|
|
|
-DTESTS_DATADIR=\""$(abs_top_srcdir)/tests/data"\" \
|
|
|
|
-DG_DISABLE_SINGLE_INCLUDES \
|
2012-06-06 12:37:05 +00:00
|
|
|
-DGLIB_DISABLE_DEPRECATION_WARNINGS
|
2012-05-01 17:30:10 +00:00
|
|
|
|
|
|
|
noinst_PROGRAMS = $(all_examples)
|
|
|
|
|
|
|
|
-include $(top_srcdir)/build/autotools/Makefile.am.gitignore
|