mirror of
https://github.com/brl/mutter.git
synced 2024-11-23 08:30:42 -05:00
5ad1ec7cca
The bind-constraint.c example still uses clutter_actor_animate(), and it'd require some serious reworking to move it to ClutterPropertyTransition or to implicit animations.
43 lines
834 B
Makefile
43 lines
834 B
Makefile
include $(top_srcdir)/build/autotools/Makefile.am.silent
|
|
|
|
all_examples = \
|
|
basic-actor \
|
|
canvas \
|
|
constraints \
|
|
drag-action \
|
|
drop-action \
|
|
easing-modes \
|
|
flow-layout \
|
|
layout-manager \
|
|
rounded-rectangle \
|
|
threads
|
|
|
|
if PIXBUF_TESTS
|
|
all_examples += \
|
|
bin-layout \
|
|
image-content
|
|
endif
|
|
|
|
INCLUDES = \
|
|
-I$(top_srcdir) \
|
|
-I$(top_srcdir)/clutter \
|
|
-I$(top_builddir)/clutter
|
|
|
|
LDADD = \
|
|
$(top_builddir)/clutter/libclutter-@CLUTTER_API_VERSION@.la \
|
|
$(CLUTTER_LIBS) \
|
|
$(GDK_PIXBUF_LIBS) \
|
|
-lm
|
|
|
|
AM_CFLAGS = $(CLUTTER_CFLAGS) $(GDK_PIXBUF_CFLAGS)
|
|
|
|
AM_CPPFLAGS = \
|
|
-DTESTS_DATADIR=\""$(abs_top_srcdir)/tests/data"\" \
|
|
-DG_DISABLE_SINGLE_INCLUDES \
|
|
-DGLIB_DISABLE_DEPRECATION_WARNINGS \
|
|
-DCLUTTER_DISABLE_DEPRECATION_WARNINGS
|
|
|
|
noinst_PROGRAMS = $(all_examples)
|
|
|
|
-include $(top_srcdir)/build/autotools/Makefile.am.gitignore
|