2010-07-18 05:53:06 -04:00
|
|
|
include $(top_srcdir)/build/autotools/Makefile.am.silent
|
|
|
|
|
|
|
|
NULL =
|
|
|
|
|
|
|
|
noinst_PROGRAMS = \
|
2010-09-01 13:02:07 -04:00
|
|
|
animations-complex \
|
2010-11-10 11:11:27 -05:00
|
|
|
animations-looping-animator \
|
|
|
|
animations-looping-implicit \
|
|
|
|
animations-looping-state \
|
2010-09-22 11:58:08 -04:00
|
|
|
animations-moving-animator \
|
2010-09-21 12:44:00 -04:00
|
|
|
animations-moving-implicit \
|
2010-09-21 12:45:03 -04:00
|
|
|
animations-moving-state \
|
2010-08-31 12:42:37 -04:00
|
|
|
animations-reuse \
|
2010-08-05 05:58:42 -04:00
|
|
|
animations-rotating \
|
2010-11-19 09:29:39 -05:00
|
|
|
animations-scaling \
|
2010-11-24 07:22:12 -05:00
|
|
|
animations-scaling-zoom \
|
2010-07-18 05:56:35 -04:00
|
|
|
text-shadow \
|
2010-08-05 05:58:42 -04:00
|
|
|
textures-reflection \
|
|
|
|
textures-split-go \
|
|
|
|
textures-sub-texture \
|
2010-09-16 08:42:09 -04:00
|
|
|
layouts-bind-constraint-allocation \
|
2010-09-15 10:50:32 -04:00
|
|
|
layouts-bind-constraint-overlay \
|
2010-09-15 11:05:15 -04:00
|
|
|
layouts-bind-constraint-stage \
|
2010-12-15 08:13:28 -05:00
|
|
|
layouts-box \
|
|
|
|
layouts-box-menu \
|
|
|
|
layouts-box-property-effects \
|
2010-08-05 11:46:36 -04:00
|
|
|
layouts-stacking \
|
|
|
|
layouts-stacking-diff-sized-actors \
|
2010-08-11 06:09:04 -04:00
|
|
|
events-mouse-scroll \
|
2010-08-19 12:17:58 -04:00
|
|
|
events-pointer-motion \
|
|
|
|
events-pointer-motion-crossing \
|
2010-08-20 07:38:35 -04:00
|
|
|
events-pointer-motion-stacked \
|
2010-08-19 12:17:58 -04:00
|
|
|
events-pointer-motion-scribbler \
|
2010-08-12 12:39:59 -04:00
|
|
|
textures-crossfade \
|
|
|
|
textures-crossfade-cogl \
|
2010-08-16 11:39:13 -04:00
|
|
|
textures-crossfade-slideshow \
|
2010-08-25 12:53:46 -04:00
|
|
|
script-ui \
|
2010-08-27 11:31:00 -04:00
|
|
|
script-signals \
|
2010-09-27 11:36:16 -04:00
|
|
|
events-buttons \
|
2010-09-28 11:37:26 -04:00
|
|
|
events-buttons-click \
|
2010-09-28 11:53:30 -04:00
|
|
|
events-buttons-lasso \
|
2010-07-18 05:53:06 -04:00
|
|
|
$(NULL)
|
|
|
|
|
|
|
|
INCLUDES = \
|
|
|
|
-I$(top_srcdir)/ \
|
|
|
|
-I$(top_srcdir)/clutter \
|
|
|
|
-I$(top_srcdir)/clutter/cogl \
|
|
|
|
-I$(top_srcdir)/clutter/cogl/pango \
|
|
|
|
-I$(top_builddir)/clutter \
|
|
|
|
-I$(top_builddir)/clutter/cogl \
|
|
|
|
$(NULL)
|
|
|
|
|
|
|
|
LDADD = $(top_builddir)/clutter/libclutter-@CLUTTER_SONAME_INFIX@-@CLUTTER_API_VERSION@.la
|
|
|
|
|
|
|
|
AM_CFLAGS = \
|
|
|
|
$(CLUTTER_CFLAGS) \
|
|
|
|
$(MAINTAINER_CFLAGS) \
|
|
|
|
-DG_DISABLE_SINGLE_INCLUDES \
|
2010-09-10 13:21:19 -04:00
|
|
|
-DCOGL_DISABLE_DEPRECATED \
|
|
|
|
-DCLUTTER_DISABLE_DEPRECATED \
|
2010-07-18 05:53:06 -04:00
|
|
|
-DTESTS_DATA_DIR=\""$(top_srcdir)/tests/data/"\"
|
|
|
|
|
2010-08-25 12:53:46 -04:00
|
|
|
AM_LDFLAGS = $(CLUTTER_LIBS) -export-dynamic
|
2010-07-18 05:53:06 -04:00
|
|
|
|
2010-09-01 13:02:07 -04:00
|
|
|
animations_complex_SOURCES = animations-complex.c
|
2010-11-10 11:11:27 -05:00
|
|
|
animations_looping_animator_SOURCES = animations-looping-animator.c
|
|
|
|
animations_looping_implicit_SOURCES = animations-looping-implicit.c
|
|
|
|
animations_looping_state_SOURCES = animations-looping-state.c
|
2010-09-22 11:58:08 -04:00
|
|
|
animations_moving_animator_SOURCES = animations-moving-animator.c
|
2010-09-21 12:44:00 -04:00
|
|
|
animations_moving_implicit_SOURCES = animations-moving-implicit.c
|
2010-09-21 12:45:03 -04:00
|
|
|
animations_moving_state_SOURCES = animations-moving-state.c
|
2010-08-31 12:42:37 -04:00
|
|
|
animations_reuse_SOURCES = animations-reuse.c
|
2010-08-05 11:46:36 -04:00
|
|
|
animations_rotating_SOURCES = animations-rotating.c
|
2010-11-19 09:29:39 -05:00
|
|
|
animations_scaling_SOURCES = animations-scaling.c
|
2010-11-24 07:22:12 -05:00
|
|
|
animations_scaling_zoom_SOURCES = animations-scaling-zoom.c
|
2010-08-05 11:46:36 -04:00
|
|
|
text_shadow_SOURCES = text-shadow.c
|
|
|
|
textures_reflection_SOURCES = textures-reflection.c
|
|
|
|
textures_split_go_SOURCES = textures-split-go.c
|
|
|
|
textures_sub_texture_SOURCES = textures-sub-texture.c
|
2010-09-16 08:42:09 -04:00
|
|
|
layouts_bind_constraint_allocation_SOURCES = layouts-bind-constraint-allocation.c
|
2010-09-15 10:50:32 -04:00
|
|
|
layouts_bind_constraint_overlay_SOURCES = layouts-bind-constraint-overlay.c
|
2010-09-15 11:05:15 -04:00
|
|
|
layouts_bind_constraint_stage_SOURCES = layouts-bind-constraint-stage.c
|
2010-12-15 08:13:28 -05:00
|
|
|
layouts_box_SOURCES = layouts-box.c
|
|
|
|
layouts_box_menu_SOURCES = layouts-box-menu.c
|
|
|
|
layouts_box_property_effects_SOURCES = layouts-box-property-effects.c
|
2010-08-05 11:46:36 -04:00
|
|
|
layouts_stacking_SOURCES = layouts-stacking.c
|
|
|
|
layouts_stacking_diff_sized_actors_SOURCES = layouts-stacking-diff-sized-actors.c
|
2010-08-11 06:09:04 -04:00
|
|
|
events_mouse_scroll_SOURCES = events-mouse-scroll.c
|
2010-08-19 12:17:58 -04:00
|
|
|
events_pointer_motion_SOURCES = events-pointer-motion.c
|
2010-08-19 11:48:59 -04:00
|
|
|
events_pointer_motion_crossing_SOURCES = events-pointer-motion-crossing.c
|
2010-08-20 07:38:35 -04:00
|
|
|
events_pointer_motion_stacked_SOURCES = events-pointer-motion-stacked.c
|
2010-08-19 11:53:27 -04:00
|
|
|
events_pointer_motion_scribbler_SOURCES = events-pointer-motion-scribbler.c
|
2010-08-12 12:39:59 -04:00
|
|
|
textures_crossfade_SOURCES = textures-crossfade.c
|
|
|
|
textures_crossfade_cogl_SOURCES = textures-crossfade-cogl.c
|
2010-08-16 11:39:13 -04:00
|
|
|
textures_crossfade_slideshow_SOURCES = textures-crossfade-slideshow.c
|
2010-08-25 12:53:46 -04:00
|
|
|
script_ui_SOURCES = script-ui.c
|
2010-08-27 11:31:00 -04:00
|
|
|
script_signals_SOURCES = script-signals.c
|
2010-09-27 11:36:16 -04:00
|
|
|
events_buttons_SOURCES = events-buttons.c
|
2010-09-28 11:37:26 -04:00
|
|
|
events_buttons_click_SOURCES = events-buttons-click.c
|
2010-09-28 11:53:30 -04:00
|
|
|
events_buttons_lasso_SOURCES = events-buttons-lasso.c
|
2010-08-14 03:43:16 -04:00
|
|
|
|
|
|
|
-include $(top_srcdir)/build/autotools/Makefile.am.gitignore
|