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