2009-09-16 12:43:58 -04:00
|
|
|
include $(top_srcdir)/build/autotools/Makefile.am.silent
|
2009-08-10 06:45:44 -04:00
|
|
|
|
2010-09-13 06:30:30 -04:00
|
|
|
# preamble
|
2009-09-16 12:43:58 -04:00
|
|
|
NULL =
|
2007-03-22 14:21:59 -04:00
|
|
|
|
2009-10-13 12:27:19 -04:00
|
|
|
# common definitions
|
|
|
|
CLEANFILES =
|
|
|
|
DISTCLEANFILES =
|
|
|
|
EXTRA_DIST =
|
|
|
|
BUILT_SOURCES =
|
2009-10-13 14:27:03 -04:00
|
|
|
|
2010-09-13 06:30:30 -04:00
|
|
|
lib_LTLIBRARIES =
|
2010-01-15 17:56:37 -05:00
|
|
|
|
2007-03-22 14:21:59 -04:00
|
|
|
INCLUDES = \
|
2009-07-29 12:21:07 -04:00
|
|
|
-I$(top_srcdir) \
|
2010-09-13 06:30:30 -04:00
|
|
|
-I$(top_srcdir)/clutter \
|
|
|
|
-I$(top_srcdir)/clutter/$(CLUTTER_WINSYS) \
|
|
|
|
-I$(top_srcdir)/clutter/$(CLUTTER_WINSYS_BASE) \
|
2011-10-04 05:51:09 -04:00
|
|
|
-I$(top_srcdir)/clutter/deprecated \
|
2010-09-13 06:30:30 -04:00
|
|
|
-I$(top_srcdir)/clutter/cally \
|
2010-02-26 04:48:43 -05:00
|
|
|
-I$(top_builddir) \
|
2009-07-29 12:21:07 -04:00
|
|
|
-I$(top_builddir)/clutter \
|
2011-02-22 10:51:13 -05:00
|
|
|
$(NULL)
|
|
|
|
|
2009-10-13 14:27:03 -04:00
|
|
|
AM_CPPFLAGS = \
|
|
|
|
-DCLUTTER_PREFIX=\""$(prefix)"\" \
|
|
|
|
-DCLUTTER_LIBDIR=\""$(libdir)"\" \
|
|
|
|
-DCLUTTER_DATADIR=\""$(datadir)"\" \
|
2010-09-07 18:35:06 -04:00
|
|
|
-DCLUTTER_LOCALEDIR=\""$(localedir)"\" \
|
2011-10-11 09:42:31 -04:00
|
|
|
-DCLUTTER_SYSCONFDIR=\""$(sysconfdir)"\" \
|
2009-10-13 14:27:03 -04:00
|
|
|
-DCLUTTER_COMPILATION=1 \
|
2010-02-10 05:58:14 -05:00
|
|
|
-DCOGL_ENABLE_EXPERIMENTAL_API \
|
2009-10-13 14:27:03 -04:00
|
|
|
-DG_LOG_DOMAIN=\"Clutter\" \
|
2011-06-14 09:47:14 -04:00
|
|
|
$(CLUTTER_DEPRECATED_CFLAGS) \
|
2009-12-02 11:03:55 -05:00
|
|
|
$(CLUTTER_DEBUG_CFLAGS) \
|
2010-11-07 10:27:17 -05:00
|
|
|
$(CLUTTER_PROFILE_CFLAGS) \
|
2007-03-22 14:21:59 -04:00
|
|
|
$(NULL)
|
|
|
|
|
2010-01-04 09:53:03 -05:00
|
|
|
AM_CFLAGS = $(CLUTTER_CFLAGS) $(MAINTAINER_CFLAGS) $(GCOV_CFLAGS)
|
2007-03-22 14:21:59 -04:00
|
|
|
|
2010-09-13 06:30:30 -04:00
|
|
|
# these are the gir files we generate using g-ir-scanner
|
|
|
|
INTROSPECTION_GIRS =
|
|
|
|
|
|
|
|
# the base include path for headers
|
2010-10-03 20:17:40 -04:00
|
|
|
clutter_base_includedir = $(includedir)/clutter-$(CLUTTER_API_VERSION)
|
|
|
|
clutter_includedir = $(clutter_base_includedir)/clutter
|
2011-10-04 05:51:09 -04:00
|
|
|
clutter_deprecateddir = $(clutter_base_includedir)/clutter/deprecated
|
2010-09-13 06:30:30 -04:00
|
|
|
|
|
|
|
# pkg-config files
|
|
|
|
pc_files =
|
|
|
|
|
|
|
|
# common sources - please, keep these sorted alphabetically
|
2006-11-15 18:37:53 -05:00
|
|
|
source_h = \
|
2010-05-11 12:09:13 -04:00
|
|
|
$(srcdir)/clutter-action.h \
|
2010-05-14 11:42:50 -04:00
|
|
|
$(srcdir)/clutter-actor-meta.h \
|
2006-11-15 18:37:53 -05:00
|
|
|
$(srcdir)/clutter-actor.h \
|
2010-05-19 08:02:43 -04:00
|
|
|
$(srcdir)/clutter-align-constraint.h \
|
2007-03-22 14:21:59 -04:00
|
|
|
$(srcdir)/clutter-alpha.h \
|
2009-01-08 07:56:46 -05:00
|
|
|
$(srcdir)/clutter-animatable.h \
|
2008-11-17 Emmanuele Bassi <ebassi@linux.intel.com>
Bug 1014 - Clutter Animation API Improvements
* clutter/Makefile.am:
* clutter/clutter.h: Update the build
* clutter/clutter-types.h: Add AnimationMode, an enumeration
for easing functions.
* clutter/clutter-alpha.[ch]: Add the :mode property to
control the function bound to an Alpha instance using an
enumeration value. Also add six new alpha functions:
- ease-in, ease-out, ease-in-out
- sine-in, sine-out, sine-in-out
* clutter/clutter-deprecated.h: Deprecate the #defines for
the alpha functions. They will be replaced by entries in the
ClutterAnimationMode.
* clutter/clutter-interval.[ch]: Add ClutterInterval, an
object for defining, validating and computing an interval
between two values.
* clutter/clutter-animation.[ch]: Add ClutterAnimation, an
object responsible for animation the properties of a single
actor along an interval of values. ClutterAnimation memory
management is automatic. A simple wrapper method for
ClutterActor is provided:
clutter_actor_animate()
which will create, or update, an animation for the passed
actor.
* clutter/clutter-debug.h:
* clutter/clutter-main.c: Add a new 'animation' debug note.
* clutter/clutter-script.c: Clean up the alpha functions
whitelist, and add the new functions.
* doc/reference/clutter/Makefile.am:
* doc/reference/clutter/clutter-sections.txt: Update the
API reference.
* doc/reference/clutter/clutter-animation.xml: Renamed to
doc/reference/clutter/clutter-animation-tutorial.xml to
avoid clashes with the ClutterAnimation section.
* doc/reference/clutter/clutter-docs.sgml: Renamed to
doc/reference/clutter/clutter-docs.xml, as it was an XML
file and not a SGML file.
* tests/Makefile.am:
* tests/interactive/Makefile.am:
* tests/interactive/test-animation.c:
* tests/interactive/test-easing.c: Add two tests for the
new simple animation API and the easing functions.
* tests/interactive/test-actors.c:
* tests/interactive/test-behave.c:
* tests/interactive/test-depth.c:
* tests/interactive/test-effects.c:
* tests/interactive/test-layout.c:
* tests/interactive/test-multistage.c:
* tests/interactive/test-paint-wrapper.c:
* tests/interactive/test-rotate.c:
* tests/interactive/test-scale.c:
* tests/interactive/test-texture-quality.c:
* tests/interactive/test-threads.c:
* tests/interactive/test-viewport.c: Update interactive tests
to the deprecations and new alpha API.
2008-11-18 04:50:03 -05:00
|
|
|
$(srcdir)/clutter-animation.h \
|
2010-02-05 07:32:00 -05:00
|
|
|
$(srcdir)/clutter-animator.h \
|
2007-07-04 05:34:24 -04:00
|
|
|
$(srcdir)/clutter-backend.h \
|
2010-05-19 07:25:28 -04:00
|
|
|
$(srcdir)/clutter-bind-constraint.h \
|
2008-12-08 08:57:10 -05:00
|
|
|
$(srcdir)/clutter-binding-pool.h \
|
2009-09-11 08:51:23 -04:00
|
|
|
$(srcdir)/clutter-bin-layout.h \
|
2010-04-08 13:46:54 -04:00
|
|
|
$(srcdir)/clutter-blur-effect.h \
|
2009-09-01 12:42:50 -04:00
|
|
|
$(srcdir)/clutter-box.h \
|
2009-10-13 07:14:05 -04:00
|
|
|
$(srcdir)/clutter-box-layout.h \
|
2008-12-11 10:24:07 -05:00
|
|
|
$(srcdir)/clutter-cairo-texture.h \
|
2008-05-28 09:48:11 -04:00
|
|
|
$(srcdir)/clutter-child-meta.h \
|
2010-05-24 05:41:19 -04:00
|
|
|
$(srcdir)/clutter-click-action.h \
|
2009-01-26 05:32:53 -05:00
|
|
|
$(srcdir)/clutter-clone.h \
|
2010-04-06 05:54:20 -04:00
|
|
|
$(srcdir)/clutter-color-static.h \
|
2007-03-22 14:21:59 -04:00
|
|
|
$(srcdir)/clutter-color.h \
|
2010-04-13 19:40:24 -04:00
|
|
|
$(srcdir)/clutter-colorize-effect.h \
|
2010-05-14 07:13:49 -04:00
|
|
|
$(srcdir)/clutter-constraint.h \
|
2009-11-20 10:35:40 -05:00
|
|
|
$(srcdir)/clutter-container.h \
|
2010-06-09 12:52:06 -04:00
|
|
|
$(srcdir)/clutter-deform-effect.h \
|
2009-11-20 10:35:40 -05:00
|
|
|
$(srcdir)/clutter-deprecated.h \
|
2010-04-09 11:14:21 -04:00
|
|
|
$(srcdir)/clutter-desaturate-effect.h \
|
2009-11-20 10:35:40 -05:00
|
|
|
$(srcdir)/clutter-device-manager.h \
|
2010-05-12 07:00:33 -04:00
|
|
|
$(srcdir)/clutter-drag-action.h \
|
2011-06-17 11:54:31 -04:00
|
|
|
$(srcdir)/clutter-drop-action.h \
|
2010-04-08 05:55:15 -04:00
|
|
|
$(srcdir)/clutter-effect.h \
|
2011-10-04 08:28:04 -04:00
|
|
|
$(srcdir)/clutter-enums.h \
|
2007-06-07 10:41:35 -04:00
|
|
|
$(srcdir)/clutter-event.h \
|
2007-03-22 14:21:59 -04:00
|
|
|
$(srcdir)/clutter-feature.h \
|
2009-09-02 07:37:16 -04:00
|
|
|
$(srcdir)/clutter-fixed-layout.h \
|
2009-09-18 12:28:02 -04:00
|
|
|
$(srcdir)/clutter-flow-layout.h \
|
2011-10-04 05:51:09 -04:00
|
|
|
$(srcdir)/clutter-gesture-action.h \
|
2007-03-22 14:21:59 -04:00
|
|
|
$(srcdir)/clutter-group.h \
|
2009-11-23 11:07:16 -05:00
|
|
|
$(srcdir)/clutter-input-device.h \
|
2008-11-17 Emmanuele Bassi <ebassi@linux.intel.com>
Bug 1014 - Clutter Animation API Improvements
* clutter/Makefile.am:
* clutter/clutter.h: Update the build
* clutter/clutter-types.h: Add AnimationMode, an enumeration
for easing functions.
* clutter/clutter-alpha.[ch]: Add the :mode property to
control the function bound to an Alpha instance using an
enumeration value. Also add six new alpha functions:
- ease-in, ease-out, ease-in-out
- sine-in, sine-out, sine-in-out
* clutter/clutter-deprecated.h: Deprecate the #defines for
the alpha functions. They will be replaced by entries in the
ClutterAnimationMode.
* clutter/clutter-interval.[ch]: Add ClutterInterval, an
object for defining, validating and computing an interval
between two values.
* clutter/clutter-animation.[ch]: Add ClutterAnimation, an
object responsible for animation the properties of a single
actor along an interval of values. ClutterAnimation memory
management is automatic. A simple wrapper method for
ClutterActor is provided:
clutter_actor_animate()
which will create, or update, an animation for the passed
actor.
* clutter/clutter-debug.h:
* clutter/clutter-main.c: Add a new 'animation' debug note.
* clutter/clutter-script.c: Clean up the alpha functions
whitelist, and add the new functions.
* doc/reference/clutter/Makefile.am:
* doc/reference/clutter/clutter-sections.txt: Update the
API reference.
* doc/reference/clutter/clutter-animation.xml: Renamed to
doc/reference/clutter/clutter-animation-tutorial.xml to
avoid clashes with the ClutterAnimation section.
* doc/reference/clutter/clutter-docs.sgml: Renamed to
doc/reference/clutter/clutter-docs.xml, as it was an XML
file and not a SGML file.
* tests/Makefile.am:
* tests/interactive/Makefile.am:
* tests/interactive/test-animation.c:
* tests/interactive/test-easing.c: Add two tests for the
new simple animation API and the easing functions.
* tests/interactive/test-actors.c:
* tests/interactive/test-behave.c:
* tests/interactive/test-depth.c:
* tests/interactive/test-effects.c:
* tests/interactive/test-layout.c:
* tests/interactive/test-multistage.c:
* tests/interactive/test-paint-wrapper.c:
* tests/interactive/test-rotate.c:
* tests/interactive/test-scale.c:
* tests/interactive/test-texture-quality.c:
* tests/interactive/test-threads.c:
* tests/interactive/test-viewport.c: Update interactive tests
to the deprecations and new alpha API.
2008-11-18 04:50:03 -05:00
|
|
|
$(srcdir)/clutter-interval.h \
|
2007-03-22 14:21:59 -04:00
|
|
|
$(srcdir)/clutter-keysyms.h \
|
2010-09-10 08:41:49 -04:00
|
|
|
$(srcdir)/clutter-keysyms-compat.h \
|
2009-09-01 11:34:28 -04:00
|
|
|
$(srcdir)/clutter-layout-manager.h \
|
2009-09-15 12:37:11 -04:00
|
|
|
$(srcdir)/clutter-layout-meta.h \
|
2008-01-09 09:40:31 -05:00
|
|
|
$(srcdir)/clutter-list-model.h \
|
2007-06-07 10:41:35 -04:00
|
|
|
$(srcdir)/clutter-main.h \
|
2006-11-15 18:37:53 -05:00
|
|
|
$(srcdir)/clutter-media.h \
|
2007-11-15 05:02:25 -05:00
|
|
|
$(srcdir)/clutter-model.h \
|
2010-05-17 06:39:27 -04:00
|
|
|
$(srcdir)/clutter-offscreen-effect.h \
|
2010-06-10 11:56:16 -04:00
|
|
|
$(srcdir)/clutter-page-turn-effect.h \
|
2010-10-25 10:46:04 -04:00
|
|
|
$(srcdir)/clutter-path-constraint.h \
|
2008-12-05 08:13:37 -05:00
|
|
|
$(srcdir)/clutter-path.h \
|
2007-03-22 14:21:59 -04:00
|
|
|
$(srcdir)/clutter-rectangle.h \
|
2007-10-08 11:03:22 -04:00
|
|
|
$(srcdir)/clutter-script.h \
|
2007-10-25 10:34:54 -04:00
|
|
|
$(srcdir)/clutter-scriptable.h \
|
2010-06-21 10:42:20 -04:00
|
|
|
$(srcdir)/clutter-settings.h \
|
2010-04-13 11:40:31 -04:00
|
|
|
$(srcdir)/clutter-shader-effect.h \
|
2008-11-18 10:08:40 -05:00
|
|
|
$(srcdir)/clutter-shader-types.h \
|
2011-03-09 04:06:44 -05:00
|
|
|
$(srcdir)/clutter-swipe-action.h \
|
2010-11-10 11:37:34 -05:00
|
|
|
$(srcdir)/clutter-snap-constraint.h \
|
2007-03-22 14:21:59 -04:00
|
|
|
$(srcdir)/clutter-stage.h \
|
2008-03-28 18:50:55 -04:00
|
|
|
$(srcdir)/clutter-stage-manager.h \
|
2009-08-13 07:34:07 -04:00
|
|
|
$(srcdir)/clutter-stage-window.h \
|
2010-05-11 10:04:34 -04:00
|
|
|
$(srcdir)/clutter-state.h \
|
2010-03-18 12:02:31 -04:00
|
|
|
$(srcdir)/clutter-table-layout.h \
|
2007-03-22 14:21:59 -04:00
|
|
|
$(srcdir)/clutter-texture.h \
|
2008-12-11 06:12:48 -05:00
|
|
|
$(srcdir)/clutter-text.h \
|
2007-03-22 14:21:59 -04:00
|
|
|
$(srcdir)/clutter-timeline.h \
|
2007-07-26 09:13:23 -04:00
|
|
|
$(srcdir)/clutter-types.h \
|
2007-05-22 05:31:40 -04:00
|
|
|
$(srcdir)/clutter-units.h \
|
2007-03-22 14:21:59 -04:00
|
|
|
$(srcdir)/clutter-util.h \
|
|
|
|
$(NULL)
|
2007-01-23 15:29:11 -05:00
|
|
|
|
2007-03-22 14:21:59 -04:00
|
|
|
source_c = \
|
2010-05-11 12:09:13 -04:00
|
|
|
$(srcdir)/clutter-action.c \
|
2010-10-11 10:57:22 -04:00
|
|
|
$(srcdir)/clutter-actor-box.c \
|
2010-05-14 11:42:50 -04:00
|
|
|
$(srcdir)/clutter-actor-meta.c \
|
2009-02-28 14:13:18 -05:00
|
|
|
$(srcdir)/clutter-actor.c \
|
2010-05-19 08:02:43 -04:00
|
|
|
$(srcdir)/clutter-align-constraint.c \
|
2009-02-28 14:13:18 -05:00
|
|
|
$(srcdir)/clutter-alpha.c \
|
|
|
|
$(srcdir)/clutter-animatable.c \
|
|
|
|
$(srcdir)/clutter-animation.c \
|
2010-02-05 07:32:00 -05:00
|
|
|
$(srcdir)/clutter-animator.c \
|
2009-02-28 14:13:18 -05:00
|
|
|
$(srcdir)/clutter-backend.c \
|
|
|
|
$(srcdir)/clutter-bezier.c \
|
2010-05-19 07:25:28 -04:00
|
|
|
$(srcdir)/clutter-bind-constraint.c \
|
2009-02-28 14:13:18 -05:00
|
|
|
$(srcdir)/clutter-binding-pool.c \
|
2009-09-11 08:51:23 -04:00
|
|
|
$(srcdir)/clutter-bin-layout.c \
|
2010-04-08 13:46:54 -04:00
|
|
|
$(srcdir)/clutter-blur-effect.c \
|
2009-09-01 12:42:50 -04:00
|
|
|
$(srcdir)/clutter-box.c \
|
2009-10-13 07:14:05 -04:00
|
|
|
$(srcdir)/clutter-box-layout.c \
|
2009-02-28 14:13:18 -05:00
|
|
|
$(srcdir)/clutter-cairo-texture.c \
|
|
|
|
$(srcdir)/clutter-child-meta.c \
|
2010-05-24 05:41:19 -04:00
|
|
|
$(srcdir)/clutter-click-action.c \
|
2009-02-28 14:13:18 -05:00
|
|
|
$(srcdir)/clutter-clone.c \
|
|
|
|
$(srcdir)/clutter-color.c \
|
2010-04-13 19:40:24 -04:00
|
|
|
$(srcdir)/clutter-colorize-effect.c \
|
2010-05-14 07:13:49 -04:00
|
|
|
$(srcdir)/clutter-constraint.c \
|
2009-02-28 14:13:18 -05:00
|
|
|
$(srcdir)/clutter-container.c \
|
2010-06-09 12:52:06 -04:00
|
|
|
$(srcdir)/clutter-deform-effect.c \
|
2010-04-09 11:14:21 -04:00
|
|
|
$(srcdir)/clutter-desaturate-effect.c \
|
2009-11-20 10:35:40 -05:00
|
|
|
$(srcdir)/clutter-device-manager.c \
|
2010-05-12 07:00:33 -04:00
|
|
|
$(srcdir)/clutter-drag-action.c \
|
2011-06-17 11:54:31 -04:00
|
|
|
$(srcdir)/clutter-drop-action.c \
|
2010-04-08 05:55:15 -04:00
|
|
|
$(srcdir)/clutter-effect.c \
|
2009-02-28 14:13:18 -05:00
|
|
|
$(srcdir)/clutter-event.c \
|
|
|
|
$(srcdir)/clutter-feature.c \
|
2009-09-02 07:37:16 -04:00
|
|
|
$(srcdir)/clutter-fixed-layout.c \
|
2011-02-28 10:05:51 -05:00
|
|
|
$(srcdir)/clutter-flatten-effect.c \
|
2009-09-18 12:28:02 -04:00
|
|
|
$(srcdir)/clutter-flow-layout.c \
|
2011-10-04 05:51:09 -04:00
|
|
|
$(srcdir)/clutter-gesture-action.c \
|
2009-02-28 14:13:18 -05:00
|
|
|
$(srcdir)/clutter-group.c \
|
2009-11-23 11:07:16 -05:00
|
|
|
$(srcdir)/clutter-input-device.c \
|
2009-02-28 14:13:18 -05:00
|
|
|
$(srcdir)/clutter-interval.c \
|
2011-02-28 09:02:00 -05:00
|
|
|
$(srcdir)/clutter-keysyms-table.c \
|
2009-09-01 11:34:28 -04:00
|
|
|
$(srcdir)/clutter-layout-manager.c \
|
2009-09-15 12:37:11 -04:00
|
|
|
$(srcdir)/clutter-layout-meta.c \
|
2009-02-28 14:13:18 -05:00
|
|
|
$(srcdir)/clutter-list-model.c \
|
|
|
|
$(srcdir)/clutter-main.c \
|
2009-03-21 16:39:32 -04:00
|
|
|
$(srcdir)/clutter-master-clock.c \
|
2009-02-28 14:13:18 -05:00
|
|
|
$(srcdir)/clutter-media.c \
|
|
|
|
$(srcdir)/clutter-model.c \
|
2010-05-17 06:39:27 -04:00
|
|
|
$(srcdir)/clutter-offscreen-effect.c \
|
2010-06-10 11:56:16 -04:00
|
|
|
$(srcdir)/clutter-page-turn-effect.c \
|
2010-10-25 10:46:04 -04:00
|
|
|
$(srcdir)/clutter-path-constraint.c \
|
2009-02-28 14:13:18 -05:00
|
|
|
$(srcdir)/clutter-path.c \
|
|
|
|
$(srcdir)/clutter-rectangle.c \
|
|
|
|
$(srcdir)/clutter-script.c \
|
|
|
|
$(srcdir)/clutter-script-parser.c \
|
|
|
|
$(srcdir)/clutter-scriptable.c \
|
2010-06-21 10:42:20 -04:00
|
|
|
$(srcdir)/clutter-settings.c \
|
2010-04-13 11:40:31 -04:00
|
|
|
$(srcdir)/clutter-shader-effect.c \
|
2009-02-28 14:13:18 -05:00
|
|
|
$(srcdir)/clutter-shader-types.c \
|
2011-03-09 04:06:44 -05:00
|
|
|
$(srcdir)/clutter-swipe-action.c \
|
2010-11-10 11:37:34 -05:00
|
|
|
$(srcdir)/clutter-snap-constraint.c \
|
2009-02-28 14:13:18 -05:00
|
|
|
$(srcdir)/clutter-stage.c \
|
|
|
|
$(srcdir)/clutter-stage-manager.c \
|
|
|
|
$(srcdir)/clutter-stage-window.c \
|
2010-05-11 10:04:34 -04:00
|
|
|
$(srcdir)/clutter-state.c \
|
2010-03-18 12:02:31 -04:00
|
|
|
$(srcdir)/clutter-table-layout.c \
|
2009-02-28 14:13:18 -05:00
|
|
|
$(srcdir)/clutter-texture.c \
|
|
|
|
$(srcdir)/clutter-text.c \
|
|
|
|
$(srcdir)/clutter-timeline.c \
|
|
|
|
$(srcdir)/clutter-units.c \
|
|
|
|
$(srcdir)/clutter-util.c \
|
2010-09-08 15:39:15 -04:00
|
|
|
$(srcdir)/clutter-paint-volume.c \
|
2010-01-10 06:35:26 -05:00
|
|
|
$(NULL)
|
|
|
|
|
2010-09-13 06:30:30 -04:00
|
|
|
# private headers; these should not be distributed or introspected
|
2007-03-22 14:21:59 -04:00
|
|
|
source_h_priv = \
|
2010-10-21 05:54:14 -04:00
|
|
|
$(srcdir)/clutter-actor-meta-private.h \
|
2010-10-21 07:16:05 -04:00
|
|
|
$(srcdir)/clutter-actor-private.h \
|
2010-10-21 06:49:37 -04:00
|
|
|
$(srcdir)/clutter-backend-private.h \
|
2010-10-21 05:54:14 -04:00
|
|
|
$(srcdir)/clutter-bezier.h \
|
|
|
|
$(srcdir)/clutter-debug.h \
|
|
|
|
$(srcdir)/clutter-device-manager-private.h \
|
2011-02-18 11:00:39 -05:00
|
|
|
$(srcdir)/clutter-effect-private.h \
|
event/x11: Rework the way we translate X11 events
This is a lump commit that is fairly difficult to break down without
either breaking bisecting or breaking the test cases.
The new design for handling X11 event translation works this way:
- ClutterBackend::translate_event() has been added as the central
point used by a ClutterBackend implementation to translate a
native event into a ClutterEvent;
- ClutterEventTranslator is a private interface that should be
implemented by backend-specific objects, like stage
implementations and ClutterDeviceManager sub-classes, and
allows dealing with class-specific event translation;
- ClutterStageX11 implements EventTranslator, and deals with the
stage-relative X11 events coming from the X11 event source;
- ClutterStageGLX overrides EventTranslator, in order to
deal with the INTEL_GLX_swap_event extension, and it chains up
to the X11 default implementation;
- ClutterDeviceManagerX11 has been split into two separate classes,
one that deals with core and (optionally) XI1 events, and the
other that deals with XI2 events; the selection is done at run-time,
since the core+XI1 and XI2 mechanisms are mutually exclusive.
All the other backends we officially support still use their own
custom event source and translation function, but the end goal is to
migrate them to the translate_event() virtual function, and have the
event source be a shared part of Clutter core.
2011-01-04 07:32:04 -05:00
|
|
|
$(srcdir)/clutter-event-translator.h \
|
2011-02-18 11:27:49 -05:00
|
|
|
$(srcdir)/clutter-event-private.h \
|
2011-02-28 10:05:51 -05:00
|
|
|
$(srcdir)/clutter-flatten-effect.h \
|
2010-10-21 05:54:14 -04:00
|
|
|
$(srcdir)/clutter-id-pool.h \
|
|
|
|
$(srcdir)/clutter-master-clock.h \
|
|
|
|
$(srcdir)/clutter-model-private.h \
|
2011-02-19 04:15:34 -05:00
|
|
|
$(srcdir)/clutter-offscreen-effect-private.h \
|
2010-10-21 06:59:50 -04:00
|
|
|
$(srcdir)/clutter-paint-volume-private.h \
|
2010-10-21 05:54:14 -04:00
|
|
|
$(srcdir)/clutter-private.h \
|
|
|
|
$(srcdir)/clutter-profile.h \
|
|
|
|
$(srcdir)/clutter-script-private.h \
|
2011-10-11 09:42:31 -04:00
|
|
|
$(srcdir)/clutter-settings-private.h \
|
2010-10-21 05:59:49 -04:00
|
|
|
$(srcdir)/clutter-stage-manager-private.h \
|
2010-10-21 06:29:09 -04:00
|
|
|
$(srcdir)/clutter-stage-private.h \
|
2007-03-22 14:21:59 -04:00
|
|
|
$(NULL)
|
|
|
|
|
2010-09-13 06:30:30 -04:00
|
|
|
# private source code; these should not be introspected
|
|
|
|
source_c_priv = \
|
event/x11: Rework the way we translate X11 events
This is a lump commit that is fairly difficult to break down without
either breaking bisecting or breaking the test cases.
The new design for handling X11 event translation works this way:
- ClutterBackend::translate_event() has been added as the central
point used by a ClutterBackend implementation to translate a
native event into a ClutterEvent;
- ClutterEventTranslator is a private interface that should be
implemented by backend-specific objects, like stage
implementations and ClutterDeviceManager sub-classes, and
allows dealing with class-specific event translation;
- ClutterStageX11 implements EventTranslator, and deals with the
stage-relative X11 events coming from the X11 event source;
- ClutterStageGLX overrides EventTranslator, in order to
deal with the INTEL_GLX_swap_event extension, and it chains up
to the X11 default implementation;
- ClutterDeviceManagerX11 has been split into two separate classes,
one that deals with core and (optionally) XI1 events, and the
other that deals with XI2 events; the selection is done at run-time,
since the core+XI1 and XI2 mechanisms are mutually exclusive.
All the other backends we officially support still use their own
custom event source and translation function, but the end goal is to
migrate them to the translate_event() virtual function, and have the
event source be a shared part of Clutter core.
2011-01-04 07:32:04 -05:00
|
|
|
$(srcdir)/clutter-event-translator.c \
|
2010-09-13 06:30:30 -04:00
|
|
|
$(srcdir)/clutter-id-pool.c \
|
|
|
|
$(srcdir)/clutter-profile.c \
|
|
|
|
$(NULL)
|
|
|
|
|
2011-10-04 05:51:09 -04:00
|
|
|
# deprecated installed headers
|
|
|
|
deprecated_h = \
|
2011-11-02 08:47:46 -04:00
|
|
|
$(srcdir)/deprecated/clutter-actor-deprecated.h \
|
2011-11-02 08:41:42 -04:00
|
|
|
$(srcdir)/deprecated/clutter-backend-deprecated.h \
|
2011-10-04 06:58:44 -04:00
|
|
|
$(srcdir)/deprecated/clutter-behaviour.h \
|
2011-10-04 06:32:36 -04:00
|
|
|
$(srcdir)/deprecated/clutter-behaviour-depth.h \
|
|
|
|
$(srcdir)/deprecated/clutter-behaviour-ellipse.h \
|
|
|
|
$(srcdir)/deprecated/clutter-behaviour-opacity.h \
|
|
|
|
$(srcdir)/deprecated/clutter-behaviour-path.h \
|
|
|
|
$(srcdir)/deprecated/clutter-behaviour-rotate.h \
|
|
|
|
$(srcdir)/deprecated/clutter-behaviour-scale.h \
|
2011-10-04 07:18:26 -04:00
|
|
|
$(srcdir)/deprecated/clutter-fixed.h \
|
2011-10-04 06:32:36 -04:00
|
|
|
$(srcdir)/deprecated/clutter-frame-source.h \
|
2011-11-02 08:32:09 -04:00
|
|
|
$(srcdir)/deprecated/clutter-main-deprecated.h \
|
2011-10-04 06:32:36 -04:00
|
|
|
$(srcdir)/deprecated/clutter-timeout-pool.h \
|
|
|
|
$(srcdir)/deprecated/clutter-score.h \
|
|
|
|
$(srcdir)/deprecated/clutter-shader.h \
|
2011-10-04 05:51:09 -04:00
|
|
|
$(NULL)
|
|
|
|
|
|
|
|
# deprecated source code
|
|
|
|
deprecated_c = \
|
2011-10-04 06:58:44 -04:00
|
|
|
$(srcdir)/deprecated/clutter-behaviour.c \
|
2011-10-04 06:32:36 -04:00
|
|
|
$(srcdir)/deprecated/clutter-behaviour-depth.c \
|
|
|
|
$(srcdir)/deprecated/clutter-behaviour-ellipse.c \
|
|
|
|
$(srcdir)/deprecated/clutter-behaviour-opacity.c \
|
|
|
|
$(srcdir)/deprecated/clutter-behaviour-path.c \
|
|
|
|
$(srcdir)/deprecated/clutter-behaviour-rotate.c \
|
|
|
|
$(srcdir)/deprecated/clutter-behaviour-scale.c \
|
2011-10-04 07:18:26 -04:00
|
|
|
$(srcdir)/deprecated/clutter-fixed.c \
|
2011-10-04 06:32:36 -04:00
|
|
|
$(srcdir)/deprecated/clutter-frame-source.c \
|
|
|
|
$(srcdir)/deprecated/clutter-timeout-pool.c \
|
|
|
|
$(srcdir)/deprecated/clutter-score.c \
|
|
|
|
$(srcdir)/deprecated/clutter-shader.c \
|
2011-10-04 05:51:09 -04:00
|
|
|
$(NULL)
|
|
|
|
|
|
|
|
# deprecated private headers; these should not be installed
|
|
|
|
deprecated_h_priv = \
|
2011-10-04 05:57:28 -04:00
|
|
|
$(srcdir)/deprecated/clutter-timeout-interval.h \
|
2011-10-04 05:51:09 -04:00
|
|
|
$(NULL)
|
|
|
|
|
|
|
|
# deprecated private source code; these should not be introspected
|
|
|
|
deprecated_c_priv = \
|
2011-10-04 05:57:28 -04:00
|
|
|
$(srcdir)/deprecated/clutter-timeout-interval.c \
|
2011-10-04 05:51:09 -04:00
|
|
|
$(NULL)
|
|
|
|
|
2010-09-13 06:30:30 -04:00
|
|
|
# built sources
|
|
|
|
built_source_c = \
|
|
|
|
clutter-enum-types.c \
|
|
|
|
clutter-marshal.c \
|
|
|
|
$(NULL)
|
|
|
|
|
|
|
|
# built headers
|
|
|
|
built_source_h = \
|
|
|
|
clutter-enum-types.h \
|
|
|
|
clutter-marshal.h \
|
|
|
|
$(NULL)
|
|
|
|
|
2011-01-19 09:33:27 -05:00
|
|
|
# config header
|
|
|
|
DISTCLEANFILES += clutter-config.h
|
|
|
|
EXTRA_DIST += clutter-config.h.in
|
|
|
|
|
2010-09-13 06:30:30 -04:00
|
|
|
# version header
|
|
|
|
DISTCLEANFILES += clutter-version.h
|
|
|
|
EXTRA_DIST += clutter-version.h.in
|
|
|
|
|
|
|
|
# key symbol update script
|
|
|
|
EXTRA_DIST += clutter-keysyms-update.pl
|
|
|
|
|
|
|
|
pc_files += clutter-$(CLUTTER_API_VERSION).pc
|
|
|
|
|
|
|
|
# backends source listings
|
|
|
|
#
|
|
|
|
# backend_source_c := source code
|
|
|
|
# backend_source_h := installed public headers
|
|
|
|
# backend_source_c_priv := source that should not be scanned by g-i
|
|
|
|
# backend_source_h_priv := private headers
|
|
|
|
# backend_source_built := built sources
|
|
|
|
#
|
|
|
|
backend_source_c =
|
|
|
|
backend_source_h =
|
|
|
|
backend_source_c_priv =
|
|
|
|
backend_source_h_priv =
|
|
|
|
backend_source_built =
|
|
|
|
|
|
|
|
# X11 backend rules
|
|
|
|
x11_source_c = \
|
|
|
|
$(srcdir)/x11/clutter-backend-x11.c \
|
event/x11: Rework the way we translate X11 events
This is a lump commit that is fairly difficult to break down without
either breaking bisecting or breaking the test cases.
The new design for handling X11 event translation works this way:
- ClutterBackend::translate_event() has been added as the central
point used by a ClutterBackend implementation to translate a
native event into a ClutterEvent;
- ClutterEventTranslator is a private interface that should be
implemented by backend-specific objects, like stage
implementations and ClutterDeviceManager sub-classes, and
allows dealing with class-specific event translation;
- ClutterStageX11 implements EventTranslator, and deals with the
stage-relative X11 events coming from the X11 event source;
- ClutterStageGLX overrides EventTranslator, in order to
deal with the INTEL_GLX_swap_event extension, and it chains up
to the X11 default implementation;
- ClutterDeviceManagerX11 has been split into two separate classes,
one that deals with core and (optionally) XI1 events, and the
other that deals with XI2 events; the selection is done at run-time,
since the core+XI1 and XI2 mechanisms are mutually exclusive.
All the other backends we officially support still use their own
custom event source and translation function, but the end goal is to
migrate them to the translate_event() virtual function, and have the
event source be a shared part of Clutter core.
2011-01-04 07:32:04 -05:00
|
|
|
$(srcdir)/x11/clutter-device-manager-core-x11.c \
|
2010-09-13 06:30:30 -04:00
|
|
|
$(srcdir)/x11/clutter-event-x11.c \
|
event/x11: Rework the way we translate X11 events
This is a lump commit that is fairly difficult to break down without
either breaking bisecting or breaking the test cases.
The new design for handling X11 event translation works this way:
- ClutterBackend::translate_event() has been added as the central
point used by a ClutterBackend implementation to translate a
native event into a ClutterEvent;
- ClutterEventTranslator is a private interface that should be
implemented by backend-specific objects, like stage
implementations and ClutterDeviceManager sub-classes, and
allows dealing with class-specific event translation;
- ClutterStageX11 implements EventTranslator, and deals with the
stage-relative X11 events coming from the X11 event source;
- ClutterStageGLX overrides EventTranslator, in order to
deal with the INTEL_GLX_swap_event extension, and it chains up
to the X11 default implementation;
- ClutterDeviceManagerX11 has been split into two separate classes,
one that deals with core and (optionally) XI1 events, and the
other that deals with XI2 events; the selection is done at run-time,
since the core+XI1 and XI2 mechanisms are mutually exclusive.
All the other backends we officially support still use their own
custom event source and translation function, but the end goal is to
migrate them to the translate_event() virtual function, and have the
event source be a shared part of Clutter core.
2011-01-04 07:32:04 -05:00
|
|
|
$(srcdir)/x11/clutter-input-device-core-x11.c \
|
2010-09-13 06:30:30 -04:00
|
|
|
$(srcdir)/x11/clutter-keymap-x11.c \
|
|
|
|
$(srcdir)/x11/clutter-stage-x11.c \
|
|
|
|
$(srcdir)/x11/clutter-x11-texture-pixmap.c \
|
|
|
|
$(NULL)
|
|
|
|
|
|
|
|
x11_source_h = \
|
|
|
|
$(srcdir)/x11/clutter-x11.h \
|
|
|
|
$(srcdir)/x11/clutter-x11-texture-pixmap.h \
|
|
|
|
$(NULL)
|
|
|
|
|
2010-10-03 11:10:44 -04:00
|
|
|
x11_source_h_priv = \
|
2010-09-13 06:30:30 -04:00
|
|
|
$(srcdir)/x11/clutter-backend-x11.h \
|
event/x11: Rework the way we translate X11 events
This is a lump commit that is fairly difficult to break down without
either breaking bisecting or breaking the test cases.
The new design for handling X11 event translation works this way:
- ClutterBackend::translate_event() has been added as the central
point used by a ClutterBackend implementation to translate a
native event into a ClutterEvent;
- ClutterEventTranslator is a private interface that should be
implemented by backend-specific objects, like stage
implementations and ClutterDeviceManager sub-classes, and
allows dealing with class-specific event translation;
- ClutterStageX11 implements EventTranslator, and deals with the
stage-relative X11 events coming from the X11 event source;
- ClutterStageGLX overrides EventTranslator, in order to
deal with the INTEL_GLX_swap_event extension, and it chains up
to the X11 default implementation;
- ClutterDeviceManagerX11 has been split into two separate classes,
one that deals with core and (optionally) XI1 events, and the
other that deals with XI2 events; the selection is done at run-time,
since the core+XI1 and XI2 mechanisms are mutually exclusive.
All the other backends we officially support still use their own
custom event source and translation function, but the end goal is to
migrate them to the translate_event() virtual function, and have the
event source be a shared part of Clutter core.
2011-01-04 07:32:04 -05:00
|
|
|
$(srcdir)/x11/clutter-device-manager-core-x11.h \
|
|
|
|
$(srcdir)/x11/clutter-input-device-core-x11.h \
|
2010-09-13 06:30:30 -04:00
|
|
|
$(srcdir)/x11/clutter-keymap-x11.h \
|
|
|
|
$(srcdir)/x11/clutter-settings-x11.h \
|
|
|
|
$(srcdir)/x11/clutter-stage-x11.h \
|
|
|
|
$(NULL)
|
|
|
|
|
2010-10-03 11:10:44 -04:00
|
|
|
x11_source_c_priv = \
|
2010-09-13 06:30:30 -04:00
|
|
|
$(srcdir)/x11/xsettings/xsettings-client.c \
|
|
|
|
$(srcdir)/x11/xsettings/xsettings-client.h \
|
|
|
|
$(srcdir)/x11/xsettings/xsettings-common.c \
|
|
|
|
$(srcdir)/x11/xsettings/xsettings-common.h \
|
|
|
|
$(NULL)
|
|
|
|
|
event/x11: Rework the way we translate X11 events
This is a lump commit that is fairly difficult to break down without
either breaking bisecting or breaking the test cases.
The new design for handling X11 event translation works this way:
- ClutterBackend::translate_event() has been added as the central
point used by a ClutterBackend implementation to translate a
native event into a ClutterEvent;
- ClutterEventTranslator is a private interface that should be
implemented by backend-specific objects, like stage
implementations and ClutterDeviceManager sub-classes, and
allows dealing with class-specific event translation;
- ClutterStageX11 implements EventTranslator, and deals with the
stage-relative X11 events coming from the X11 event source;
- ClutterStageGLX overrides EventTranslator, in order to
deal with the INTEL_GLX_swap_event extension, and it chains up
to the X11 default implementation;
- ClutterDeviceManagerX11 has been split into two separate classes,
one that deals with core and (optionally) XI1 events, and the
other that deals with XI2 events; the selection is done at run-time,
since the core+XI1 and XI2 mechanisms are mutually exclusive.
All the other backends we officially support still use their own
custom event source and translation function, but the end goal is to
migrate them to the translate_event() virtual function, and have the
event source be a shared part of Clutter core.
2011-01-04 07:32:04 -05:00
|
|
|
if BUILD_XI2
|
|
|
|
x11_source_c += \
|
|
|
|
$(srcdir)/x11/clutter-device-manager-xi2.c \
|
|
|
|
$(srcdir)/x11/clutter-input-device-xi2.c \
|
|
|
|
$(NULL)
|
|
|
|
|
|
|
|
x11_source_h_priv += \
|
|
|
|
$(srcdir)/x11/clutter-device-manager-xi2.h \
|
|
|
|
$(srcdir)/x11/clutter-input-device-xi2.h \
|
|
|
|
$(NULL)
|
|
|
|
endif # BUILD_XI2
|
|
|
|
|
2010-10-03 11:10:44 -04:00
|
|
|
if SUPPORT_X11
|
2010-09-13 06:30:30 -04:00
|
|
|
backend_source_h += $(x11_source_h)
|
|
|
|
backend_source_c += $(x11_source_c)
|
2010-10-03 11:10:44 -04:00
|
|
|
backend_source_h_priv += $(x11_source_h_priv)
|
|
|
|
backend_source_c_priv += $(x11_source_c_priv)
|
2010-09-13 06:30:30 -04:00
|
|
|
|
|
|
|
# the list of files we want to introspect on X11
|
|
|
|
x11_introspection = $(x11_source_c) $(x11_source_h)
|
|
|
|
|
|
|
|
# pkg-config file for the X11 meta-backend
|
|
|
|
clutter-x11-$(CLUTTER_API_VERSION).pc: clutter-$(CLUTTER_API_VERSION).pc
|
|
|
|
$(QUIET_GEN)cp -f $< $(@F)
|
|
|
|
|
|
|
|
pc_files += clutter-x11-$(CLUTTER_API_VERSION).pc
|
|
|
|
|
|
|
|
clutterx11_includedir = $(clutter_includedir)/x11
|
|
|
|
clutterx11_include_HEADERS = $(x11_source_h)
|
|
|
|
endif # SUPPORT_X11
|
|
|
|
|
2011-05-08 19:27:10 -04:00
|
|
|
# Shared cogl backend files
|
|
|
|
cogl_source_h =
|
2010-09-13 06:30:30 -04:00
|
|
|
|
2011-05-08 19:27:10 -04:00
|
|
|
cogl_source_c = \
|
|
|
|
$(srcdir)/cogl/clutter-backend-cogl.c \
|
|
|
|
$(srcdir)/cogl/clutter-stage-cogl.c \
|
2010-09-13 06:30:30 -04:00
|
|
|
$(NULL)
|
|
|
|
|
2011-05-08 19:27:10 -04:00
|
|
|
cogl_source_h_priv = \
|
|
|
|
$(srcdir)/cogl/clutter-backend-cogl.h \
|
|
|
|
$(srcdir)/cogl/clutter-stage-cogl.h \
|
2010-09-13 06:30:30 -04:00
|
|
|
$(NULL)
|
|
|
|
|
2011-05-08 19:27:10 -04:00
|
|
|
cogl_source_c_priv =
|
2010-09-13 06:30:30 -04:00
|
|
|
|
2011-05-08 19:27:10 -04:00
|
|
|
if SUPPORT_X11
|
|
|
|
# For compatability with the old GLX backend
|
|
|
|
#
|
|
|
|
# Note: there wasn't actually anything GLX specific so we can add
|
|
|
|
# the compatability if clutter supports x11
|
2011-07-04 10:16:50 -04:00
|
|
|
backend_source_c += $(srcdir)/cogl/clutter-glx-texture-pixmap.c
|
2011-05-08 19:27:10 -04:00
|
|
|
glx_source_h = $(srcdir)/cogl/clutter-glx-texture-pixmap.h \
|
|
|
|
$(srcdir)/cogl/clutter-glx.h
|
2010-09-13 06:30:30 -04:00
|
|
|
clutterglx_includedir = $(clutter_includedir)/glx
|
|
|
|
clutterglx_include_HEADERS = $(glx_source_h)
|
2011-06-24 14:22:22 -04:00
|
|
|
|
|
|
|
clutter-glx-$(CLUTTER_API_VERSION).pc: clutter-$(CLUTTER_API_VERSION).pc
|
|
|
|
$(QUIET_GEN)cp -f $< $(@F)
|
|
|
|
|
|
|
|
pc_files += clutter-glx-$(CLUTTER_API_VERSION).pc
|
2011-05-08 19:27:10 -04:00
|
|
|
endif
|
|
|
|
|
|
|
|
if SUPPORT_GLX
|
2011-06-20 13:26:34 -04:00
|
|
|
backend_source_h += $(cogl_source_h) $(glx_source_h)
|
|
|
|
backend_source_c += $(cogl_source_c) $(glx_source_c)
|
2011-05-08 19:27:10 -04:00
|
|
|
backend_source_h_priv += $(cogl_source_h_priv)
|
2010-09-13 06:30:30 -04:00
|
|
|
endif # SUPPORT_GLX
|
|
|
|
|
Add a new GDK backend
This commit introduces a new flavour for Clutter, that uses GDK
for handling all window system specific interactions (except for
creating the cogl context, as cogl does not know about GDK), including
in particular events. This is not compatible with the X11 (glx)
flavour, and this is reflected by the different soname (libclutter-gdk-1.0.so),
as all X11 specific functions and classes are not available. If you
wish to be compatible, you should check for CLUTTER_WINDOWING_X11.
Other than that, this backend should be on feature parity with X11,
including XInput 2, XSettings and EMWH (with much, much less code)
https://bugzilla.gnome.org/show_bug.cgi?id=657434
2011-08-25 21:09:18 -04:00
|
|
|
# GDK backend rules
|
|
|
|
gdk_source_c = \
|
|
|
|
$(srcdir)/gdk/clutter-backend-gdk.c \
|
|
|
|
$(srcdir)/gdk/clutter-device-manager-gdk.c \
|
|
|
|
$(srcdir)/gdk/clutter-input-device-gdk.c \
|
|
|
|
$(srcdir)/gdk/clutter-event-gdk.c \
|
|
|
|
$(srcdir)/gdk/clutter-stage-gdk.c \
|
|
|
|
$(NULL)
|
|
|
|
|
|
|
|
gdk_source_h = \
|
|
|
|
$(srcdir)/gdk/clutter-gdk.h \
|
|
|
|
$(NULL)
|
|
|
|
|
|
|
|
gdk_source_h_priv = \
|
|
|
|
$(srcdir)/gdk/clutter-settings-gdk.h \
|
|
|
|
$(srcdir)/gdk/clutter-backend-gdk.h \
|
|
|
|
$(srcdir)/gdk/clutter-device-manager-gdk.h \
|
|
|
|
$(srcdir)/gdk/clutter-input-device-gdk.h \
|
|
|
|
$(srcdir)/gdk/clutter-event-gdk.h \
|
|
|
|
$(srcdir)/gdk/clutter-stage-gdk.h \
|
|
|
|
$(NULL)
|
|
|
|
|
|
|
|
if SUPPORT_GDK
|
|
|
|
backend_source_h += $(cogl_source_h) $(gdk_source_h)
|
|
|
|
backend_source_c += $(cogl_source_c) $(gdk_source_c)
|
|
|
|
backend_source_h_priv += $(cogl_source_h_priv) $(gdk_source_h_priv)
|
|
|
|
endif # SUPPORT_GDK
|
|
|
|
|
2010-09-13 06:30:30 -04:00
|
|
|
# Windows backend rules
|
|
|
|
win32_source_c = \
|
|
|
|
$(srcdir)/win32/clutter-backend-win32.c \
|
|
|
|
$(srcdir)/win32/clutter-device-manager-win32.c \
|
|
|
|
$(srcdir)/win32/clutter-event-win32.c \
|
|
|
|
$(srcdir)/win32/clutter-stage-win32.c \
|
|
|
|
$(NULL)
|
|
|
|
|
|
|
|
win32_source_h = \
|
|
|
|
$(srcdir)/win32/clutter-win32.h \
|
|
|
|
$(NULL)
|
|
|
|
|
2010-10-03 11:10:44 -04:00
|
|
|
win32_source_h_priv = \
|
2010-09-13 06:30:30 -04:00
|
|
|
$(srcdir)/win32/clutter-backend-win32.h \
|
|
|
|
$(srcdir)/win32/clutter-device-manager-win32.h \
|
|
|
|
$(srcdir)/win32/clutter-stage-win32.h \
|
|
|
|
$(NULL)
|
|
|
|
|
2010-10-03 11:10:44 -04:00
|
|
|
if SUPPORT_WIN32
|
|
|
|
# Ideally this resources stuff would go in win32/ but libtool doesn't
|
|
|
|
# seem to pass on the -Wl argument when linking a convenience library
|
|
|
|
# so we need to do it here as part of linking the dll. libtool also
|
|
|
|
# won't let you link against the .o directly because it wants you to
|
|
|
|
# link against libtool objects for dynamic libraries.
|
|
|
|
.rc.o :
|
2011-03-15 15:37:26 -04:00
|
|
|
mkdir -p win32
|
2010-10-03 11:10:44 -04:00
|
|
|
$(WINDRES) -I$(srcdir)/win32 $< $@
|
|
|
|
|
|
|
|
win32/resources.o : $(srcdir)/win32/invisible-cursor.cur
|
|
|
|
|
|
|
|
win32_resources = win32/resources.o
|
|
|
|
win32_resources_ldflag = -Wl,win32/resources.o
|
|
|
|
|
2010-09-13 06:30:30 -04:00
|
|
|
backend_source_h += $(win32_source_h)
|
|
|
|
backend_source_c += $(win32_source_c)
|
2010-10-03 11:10:44 -04:00
|
|
|
backend_source_h_priv += $(win32_source_h_priv)
|
2010-09-13 06:30:30 -04:00
|
|
|
|
|
|
|
clutterwin_includedir = $(clutter_includedir)/win32
|
|
|
|
clutterwin_include_HEADERS = $(win32_source_h)
|
2010-10-04 04:09:13 -04:00
|
|
|
endif # SUPPORT_WIN32
|
2010-09-13 06:30:30 -04:00
|
|
|
|
2010-10-03 11:10:44 -04:00
|
|
|
EXTRA_DIST += \
|
|
|
|
$(srcdir)/win32/invisible-cursor.cur \
|
|
|
|
$(srcdir)/win32/resources.rc \
|
|
|
|
$(NULL)
|
2010-09-13 06:30:30 -04:00
|
|
|
|
|
|
|
# EGL backend rules
|
|
|
|
egl_source_h = \
|
2011-05-08 19:27:10 -04:00
|
|
|
$(srcdir)/cogl/clutter-egl-headers.h \
|
|
|
|
$(srcdir)/cogl/clutter-egl.h \
|
2010-09-13 06:30:30 -04:00
|
|
|
$(NULL)
|
|
|
|
|
2011-07-04 11:09:41 -04:00
|
|
|
egl_tslib_c = $(srcdir)/cogl/clutter-event-tslib.c
|
2010-10-03 11:10:44 -04:00
|
|
|
|
2010-11-04 10:38:32 -04:00
|
|
|
evdev_c_priv = \
|
|
|
|
$(srcdir)/evdev/clutter-xkb-utils.c \
|
|
|
|
$(srcdir)/evdev/clutter-device-manager-evdev.c \
|
|
|
|
$(srcdir)/evdev/clutter-input-device-evdev.c \
|
|
|
|
$(NULL)
|
|
|
|
evdev_h_priv = \
|
|
|
|
$(srcdir)/evdev/clutter-xkb-utils.h \
|
|
|
|
$(srcdir)/evdev/clutter-device-manager-evdev.h \
|
|
|
|
$(srcdir)/evdev/clutter-input-device-evdev.h \
|
|
|
|
$(NULL)
|
|
|
|
|
2011-05-08 19:27:10 -04:00
|
|
|
cex_h = cogl/clutter-cex100.h
|
|
|
|
BUILT_SOURCES += $(cex_h)
|
|
|
|
EXTRA_DIST += $(srcdir)/$(cex_h).in
|
2010-11-04 10:38:32 -04:00
|
|
|
|
2010-09-13 06:30:30 -04:00
|
|
|
if USE_TSLIB
|
2011-05-08 19:27:10 -04:00
|
|
|
backend_source_c_priv += $(egl_tslib_c)
|
2010-09-13 06:30:30 -04:00
|
|
|
endif # SUPPORT_TSLIB
|
2010-11-04 10:38:32 -04:00
|
|
|
|
|
|
|
if SUPPORT_EVDEV
|
2011-05-08 19:27:10 -04:00
|
|
|
backend_source_c_priv += $(evdev_c_priv)
|
|
|
|
backend_source_h_priv += $(evdev_h_priv)
|
2010-11-04 10:38:32 -04:00
|
|
|
endif # SUPPORT_EVDEV
|
|
|
|
|
2010-09-13 06:30:30 -04:00
|
|
|
if SUPPORT_CEX100
|
2011-05-08 19:27:10 -04:00
|
|
|
backend_source_h += $(cex_h)
|
2010-09-13 06:30:30 -04:00
|
|
|
endif # SUPPORT_CEX100
|
|
|
|
|
2011-05-08 19:27:10 -04:00
|
|
|
if SUPPORT_EGL
|
|
|
|
backend_source_h += $(cogl_source_h) $(egl_source_h)
|
|
|
|
backend_source_c += $(cogl_source_c)
|
|
|
|
backend_source_h_priv += $(cogl_source_h_priv)
|
|
|
|
backend_source_c_priv += $(cogl_source_c_priv)
|
2010-09-13 06:30:30 -04:00
|
|
|
|
|
|
|
clutteregl_includedir = $(clutter_includedir)/egl
|
|
|
|
clutteregl_include_HEADERS = $(egl_source_h)
|
|
|
|
endif # SUPPORT_EGL
|
|
|
|
|
|
|
|
# OSX backend rules
|
2010-10-03 11:10:44 -04:00
|
|
|
osx_source_c = \
|
|
|
|
$(srcdir)/osx/clutter-backend-osx.c \
|
|
|
|
$(srcdir)/osx/clutter-stage-osx.c \
|
|
|
|
$(NULL)
|
|
|
|
|
|
|
|
osx_source_h = $(srcdir)/osx/clutter-osx.h
|
2010-09-13 06:30:30 -04:00
|
|
|
|
2010-10-03 11:10:44 -04:00
|
|
|
osx_source_h_priv = \
|
|
|
|
$(srcdir)/osx/clutter-backend-osx.h \
|
2011-01-28 07:56:57 -05:00
|
|
|
$(srcdir)/osx/clutter-event-loop-osx.h \
|
2010-10-03 11:10:44 -04:00
|
|
|
$(srcdir)/osx/clutter-stage-osx.h \
|
2011-02-03 03:51:20 -05:00
|
|
|
$(srcdir)/osx/clutter-device-manager-osx.h \
|
2010-10-03 11:10:44 -04:00
|
|
|
$(NULL)
|
|
|
|
|
2011-01-28 07:56:57 -05:00
|
|
|
osx_source_c_priv = \
|
|
|
|
$(srcdir)/osx/clutter-event-loop-osx.c \
|
|
|
|
$(srcdir)/osx/clutter-event-osx.c \
|
2011-02-03 03:51:20 -05:00
|
|
|
$(srcdir)/osx/clutter-device-manager-osx.c \
|
2011-01-28 07:56:57 -05:00
|
|
|
$(NULL)
|
2010-10-04 05:52:36 -04:00
|
|
|
|
2010-10-03 11:10:44 -04:00
|
|
|
if SUPPORT_OSX
|
2010-10-04 05:52:36 -04:00
|
|
|
# we need to tell the compiler that part of our code base is
|
|
|
|
# in Objective C
|
2010-10-03 11:10:44 -04:00
|
|
|
AM_CFLAGS += -xobjective-c
|
|
|
|
|
|
|
|
backend_source_h += $(osx_source_h)
|
|
|
|
backend_source_c += $(osx_source_c)
|
|
|
|
backend_source_h_priv += $(osx_source_h_priv)
|
|
|
|
backend_source_c_priv += $(osx_source_c_priv)
|
|
|
|
|
|
|
|
clutterosx_includedir = $(clutter_includedir)/osx
|
|
|
|
clutterosx_include_HEADERS = $(osx_source_h)
|
2010-09-13 06:30:30 -04:00
|
|
|
endif # SUPPORT_OSX
|
|
|
|
|
2010-09-28 10:17:46 -04:00
|
|
|
# Wayland backend rules
|
|
|
|
if SUPPORT_WAYLAND
|
|
|
|
backend_source_h += \
|
|
|
|
$(srcdir)/wayland/clutter-wayland.h
|
|
|
|
|
|
|
|
backend_source_h_priv += \
|
2010-11-04 06:59:22 -04:00
|
|
|
$(srcdir)/evdev/clutter-xkb-utils.h \
|
|
|
|
$(srcdir)/wayland/clutter-backend-wayland.h \
|
2010-09-28 10:17:46 -04:00
|
|
|
$(srcdir)/wayland/clutter-stage-wayland.h
|
|
|
|
|
|
|
|
backend_source_c += \
|
2010-11-04 06:59:22 -04:00
|
|
|
$(srcdir)/evdev/clutter-xkb-utils.c \
|
|
|
|
$(srcdir)/wayland/clutter-backend-wayland.c \
|
|
|
|
$(srcdir)/wayland/clutter-stage-wayland.c \
|
|
|
|
$(srcdir)/wayland/clutter-event-wayland.c \
|
2010-09-28 10:17:46 -04:00
|
|
|
$(srcdir)/wayland/clutter-input-device-wayland.c
|
|
|
|
|
|
|
|
clutterwayland_includedir = $(clutter_includedir)/wayland
|
|
|
|
clutterwayland_include_HEADERS = $(wayland_source_h)
|
|
|
|
endif # SUPPORT_WAYLAND
|
|
|
|
|
2010-09-13 06:30:30 -04:00
|
|
|
# cally
|
|
|
|
cally_sources_h = \
|
|
|
|
$(srcdir)/cally/cally-actor.h \
|
|
|
|
$(srcdir)/cally/cally-clone.h \
|
|
|
|
$(srcdir)/cally/cally-factory.h \
|
|
|
|
$(srcdir)/cally/cally-group.h \
|
|
|
|
$(srcdir)/cally/cally.h \
|
|
|
|
$(srcdir)/cally/cally-main.h \
|
|
|
|
$(srcdir)/cally/cally-rectangle.h \
|
|
|
|
$(srcdir)/cally/cally-root.h \
|
|
|
|
$(srcdir)/cally/cally-stage.h \
|
|
|
|
$(srcdir)/cally/cally-text.h \
|
|
|
|
$(srcdir)/cally/cally-texture.h \
|
|
|
|
$(srcdir)/cally/cally-util.h \
|
|
|
|
$(NULL)
|
|
|
|
|
|
|
|
cally_sources_c = \
|
|
|
|
$(srcdir)/cally/cally-actor.c \
|
|
|
|
$(srcdir)/cally/cally.c \
|
|
|
|
$(srcdir)/cally/cally-clone.c \
|
|
|
|
$(srcdir)/cally/cally-group.c \
|
|
|
|
$(srcdir)/cally/cally-rectangle.c \
|
|
|
|
$(srcdir)/cally/cally-root.c \
|
|
|
|
$(srcdir)/cally/cally-stage.c \
|
|
|
|
$(srcdir)/cally/cally-text.c \
|
|
|
|
$(srcdir)/cally/cally-texture.c \
|
|
|
|
$(srcdir)/cally/cally-util.c \
|
|
|
|
$(NULL)
|
|
|
|
|
|
|
|
cally_sources_private = \
|
|
|
|
$(srcdir)/cally/cally-actor-private.h \
|
|
|
|
$(NULL)
|
|
|
|
|
2010-10-03 20:17:40 -04:00
|
|
|
cally_includedir = $(clutter_base_includedir)/cally
|
2010-09-13 06:30:30 -04:00
|
|
|
cally_include_HEADERS = $(cally_sources_h)
|
|
|
|
|
|
|
|
pc_files += cally/cally-$(CLUTTER_API_VERSION).pc
|
|
|
|
EXTRA_DIST += cally/cally.pc.in
|
|
|
|
|
|
|
|
# general build rules:
|
|
|
|
# you should not need to modify anything below this point
|
|
|
|
|
|
|
|
# glib-genmarshal rules
|
|
|
|
glib_marshal_list = clutter-marshal.list
|
|
|
|
glib_marshal_prefix = _clutter_marshal
|
|
|
|
include $(top_srcdir)/build/autotools/Makefile.am.marshal
|
|
|
|
|
|
|
|
# glib-mkenums rules
|
|
|
|
glib_enum_h = clutter-enum-types.h
|
|
|
|
glib_enum_c = clutter-enum-types.c
|
|
|
|
glib_enum_headers = $(source_h) $(backend_source_h)
|
|
|
|
include $(top_srcdir)/build/autotools/Makefile.am.enums
|
|
|
|
|
|
|
|
# backend-specific pkg-config file
|
|
|
|
clutter-$(CLUTTER_WINSYS)-$(CLUTTER_API_VERSION).pc: clutter-$(CLUTTER_API_VERSION).pc
|
|
|
|
$(QUIET_GEN)cp -f $< $(@F)
|
|
|
|
|
|
|
|
pc_files += clutter-$(CLUTTER_WINSYS)-$(CLUTTER_API_VERSION).pc
|
|
|
|
|
|
|
|
pkgconfigdir = $(libdir)/pkgconfig
|
|
|
|
pkgconfig_DATA = $(pc_files)
|
|
|
|
DISTCLEANFILES += $(pc_files)
|
|
|
|
|
|
|
|
clutter_include_HEADERS = $(source_h) $(top_srcdir)/clutter/clutter.h
|
|
|
|
nodist_clutter_include_HEADERS = \
|
2011-01-19 09:33:27 -05:00
|
|
|
$(top_builddir)/clutter/clutter-config.h \
|
2010-09-13 06:30:30 -04:00
|
|
|
$(top_builddir)/clutter/clutter-version.h \
|
|
|
|
$(built_source_h)
|
|
|
|
|
2011-10-04 05:51:09 -04:00
|
|
|
clutter_deprecated_HEADERS = $(deprecated_h)
|
|
|
|
|
2010-09-13 06:30:30 -04:00
|
|
|
lib_LTLIBRARIES += libclutter-@CLUTTER_SONAME_INFIX@-@CLUTTER_API_VERSION@.la
|
|
|
|
|
2010-06-17 20:25:46 -04:00
|
|
|
libclutter_@CLUTTER_SONAME_INFIX@_@CLUTTER_API_VERSION@_la_LIBADD = \
|
2011-08-29 17:17:53 -04:00
|
|
|
-lm \
|
2009-10-13 14:27:03 -04:00
|
|
|
$(CLUTTER_LIBS) \
|
2011-02-22 10:51:13 -05:00
|
|
|
$(CLUTTER_PROFILE_LIBS)
|
2010-06-14 07:38:25 -04:00
|
|
|
|
2010-06-17 20:25:46 -04:00
|
|
|
libclutter_@CLUTTER_SONAME_INFIX@_@CLUTTER_API_VERSION@_la_DEPENDENCIES = \
|
2010-01-15 17:56:37 -05:00
|
|
|
$(win32_resources)
|
2008-02-20 11:00:33 -05:00
|
|
|
|
2010-06-17 20:25:46 -04:00
|
|
|
libclutter_@CLUTTER_SONAME_INFIX@_@CLUTTER_API_VERSION@_la_SOURCES = \
|
2010-09-13 06:30:30 -04:00
|
|
|
$(backend_source_c) \
|
|
|
|
$(backend_source_h) \
|
|
|
|
$(backend_source_c_priv) \
|
|
|
|
$(backend_source_h_priv) \
|
2008-01-25 14:48:26 -05:00
|
|
|
$(source_c) \
|
|
|
|
$(source_h) \
|
2010-01-10 06:35:26 -05:00
|
|
|
$(source_c_priv) \
|
2010-09-13 06:30:30 -04:00
|
|
|
$(source_h_priv) \
|
2011-10-04 05:51:09 -04:00
|
|
|
$(deprecated_c) \
|
|
|
|
$(deprecated_h) \
|
|
|
|
$(deprecated_c_priv) \
|
|
|
|
$(deprecated_h_priv) \
|
2010-09-13 06:30:30 -04:00
|
|
|
$(cally_sources_c) \
|
|
|
|
$(cally_sources_h) \
|
|
|
|
$(cally_sources_private) \
|
|
|
|
$(NULL)
|
2007-03-26 19:18:39 -04:00
|
|
|
|
2010-06-17 20:25:46 -04:00
|
|
|
nodist_libclutter_@CLUTTER_SONAME_INFIX@_@CLUTTER_API_VERSION@_la_SOURCES = \
|
2010-09-13 06:30:30 -04:00
|
|
|
$(backend_source_built) \
|
2010-06-14 15:34:24 -04:00
|
|
|
$(built_source_c) \
|
|
|
|
$(built_source_h)
|
|
|
|
|
2010-06-17 20:25:46 -04:00
|
|
|
libclutter_@CLUTTER_SONAME_INFIX@_@CLUTTER_API_VERSION@_la_LDFLAGS = \
|
2010-06-22 07:13:31 -04:00
|
|
|
$(CLUTTER_LINK_FLAGS) \
|
2010-01-04 09:53:03 -05:00
|
|
|
$(CLUTTER_LT_LDFLAGS) \
|
|
|
|
$(GCOV_LDFLAGS) \
|
|
|
|
-export-dynamic \
|
2011-05-05 15:56:44 -04:00
|
|
|
-export-symbols-regex "^(clutter|cally).*" \
|
2010-01-04 09:53:03 -05:00
|
|
|
-rpath $(libdir) \
|
2010-01-15 17:56:37 -05:00
|
|
|
$(win32_resources_ldflag) \
|
2010-01-04 09:53:03 -05:00
|
|
|
$(NULL)
|
2007-03-22 14:21:59 -04:00
|
|
|
|
2010-09-13 06:30:30 -04:00
|
|
|
# gobject-introspection rules
|
2010-09-03 06:09:57 -04:00
|
|
|
-include $(INTROSPECTION_MAKEFILE)
|
|
|
|
|
2009-10-18 12:12:12 -04:00
|
|
|
if HAVE_INTROSPECTION
|
2010-09-22 07:56:33 -04:00
|
|
|
Clutter-@CLUTTER_API_VERSION@.gir: libclutter-@CLUTTER_SONAME_INFIX@-@CLUTTER_API_VERSION@.la Makefile
|
2010-09-03 06:09:57 -04:00
|
|
|
|
|
|
|
Clutter_@CLUTTER_API_VERSION_AM@_gir_NAMESPACE = Clutter
|
|
|
|
Clutter_@CLUTTER_API_VERSION_AM@_gir_VERSION = @CLUTTER_API_VERSION@
|
|
|
|
Clutter_@CLUTTER_API_VERSION_AM@_gir_LIBS = libclutter-@CLUTTER_SONAME_INFIX@-@CLUTTER_API_VERSION@.la
|
2011-10-04 05:51:09 -04:00
|
|
|
Clutter_@CLUTTER_API_VERSION_AM@_gir_FILES = \
|
|
|
|
$(clutter_include_HEADERS) \
|
|
|
|
$(clutter_deprecated_HEADERS) \
|
|
|
|
$(nodist_clutter_include_HEADERS) \
|
|
|
|
$(source_c) \
|
|
|
|
$(deprecated_c) \
|
|
|
|
$(built_source_c)
|
2010-09-20 09:13:49 -04:00
|
|
|
Clutter_@CLUTTER_API_VERSION_AM@_gir_CFLAGS = $(INCLUDES) $(CLUTTER_CFLAGS) $(AM_CPPFLAGS) -UCLUTTER_DISABLE_DEPRECATED
|
2011-05-06 12:21:00 -04:00
|
|
|
Clutter_@CLUTTER_API_VERSION_AM@_gir_INCLUDES = GL-1.0 GObject-2.0 cairo-1.0 Cogl-1.0 CoglPango-1.0 Atk-1.0 Json-1.0
|
2010-09-03 06:09:57 -04:00
|
|
|
Clutter_@CLUTTER_API_VERSION_AM@_gir_SCANNERFLAGS = \
|
2011-02-15 07:13:14 -05:00
|
|
|
--warn-all \
|
2010-09-03 06:09:57 -04:00
|
|
|
--c-include='clutter/clutter.h' \
|
2011-02-22 10:51:13 -05:00
|
|
|
--pkg-export=clutter-@CLUTTER_API_VERSION@
|
2011-05-06 11:55:10 -04:00
|
|
|
|
|
|
|
INTROSPECTION_GIRS += Clutter-@CLUTTER_API_VERSION@.gir
|
2011-05-05 15:56:44 -04:00
|
|
|
|
|
|
|
Cally-@CLUTTER_API_VERSION@.gir: Makefile Clutter-@CLUTTER_API_VERSION@.gir
|
2010-09-03 06:09:57 -04:00
|
|
|
|
|
|
|
Cally_@CLUTTER_API_VERSION_AM@_gir_NAMESPACE = Cally
|
|
|
|
Cally_@CLUTTER_API_VERSION_AM@_gir_VERSION = @CLUTTER_API_VERSION@
|
|
|
|
Cally_@CLUTTER_API_VERSION_AM@_gir_LIBS = libclutter-@CLUTTER_SONAME_INFIX@-@CLUTTER_API_VERSION@.la
|
2010-09-13 06:30:30 -04:00
|
|
|
Cally_@CLUTTER_API_VERSION_AM@_gir_FILES = $(cally_sources_h) $(cally_sources_c)
|
2010-09-20 09:13:49 -04:00
|
|
|
Cally_@CLUTTER_API_VERSION_AM@_gir_CFLAGS = $(INCLUDES) $(CLUTTER_CFLAGS) $(AM_CPPFLAGS) -UCLUTTER_DISABLE_DEPRECATED
|
2010-09-03 06:09:57 -04:00
|
|
|
Cally_@CLUTTER_API_VERSION_AM@_gir_SCANNERFLAGS = \
|
2010-09-30 07:43:10 -04:00
|
|
|
--identifier-prefix=Cally \
|
|
|
|
--symbol-prefix=cally \
|
2010-09-03 06:09:57 -04:00
|
|
|
--c-include='cally/cally.h' \
|
2011-05-06 11:55:10 -04:00
|
|
|
--pkg-export=cally-@CLUTTER_API_VERSION@ \
|
2011-02-22 10:51:13 -05:00
|
|
|
--include-uninstalled=$(top_builddir)/clutter/Clutter-@CLUTTER_API_VERSION@.gir
|
2010-09-03 06:09:57 -04:00
|
|
|
|
|
|
|
INTROSPECTION_GIRS += Cally-@CLUTTER_API_VERSION@.gir
|
2010-07-14 19:26:42 -04:00
|
|
|
|
2010-09-13 06:30:30 -04:00
|
|
|
if SUPPORT_X11
|
2011-05-05 15:56:44 -04:00
|
|
|
ClutterX11-@CLUTTER_API_VERSION@.gir: Makefile Clutter-@CLUTTER_API_VERSION@.gir
|
2010-09-08 13:27:12 -04:00
|
|
|
|
2010-09-09 18:01:40 -04:00
|
|
|
ClutterX11_@CLUTTER_API_VERSION_AM@_gir_SCANNERFLAGS = \
|
|
|
|
--identifier-prefix=ClutterX11 \
|
|
|
|
--symbol-prefix=clutter_x11 \
|
2010-09-30 07:43:10 -04:00
|
|
|
--c-include='clutter/x11/clutter-x11.h' \
|
2011-05-06 11:55:10 -04:00
|
|
|
--pkg-export=clutter-x11-@CLUTTER_API_VERSION@ \
|
|
|
|
--include-uninstalled=$(top_builddir)/clutter/Clutter-@CLUTTER_API_VERSION@.gir
|
2010-09-09 13:32:13 -04:00
|
|
|
ClutterX11_@CLUTTER_API_VERSION_AM@_gir_INCLUDES = xlib-2.0
|
2010-09-08 13:27:12 -04:00
|
|
|
ClutterX11_@CLUTTER_API_VERSION_AM@_gir_LIBS = libclutter-@CLUTTER_SONAME_INFIX@-@CLUTTER_API_VERSION@.la
|
2010-09-13 06:30:30 -04:00
|
|
|
ClutterX11_@CLUTTER_API_VERSION_AM@_gir_FILES = $(x11_introspection)
|
|
|
|
ClutterX11_@CLUTTER_API_VERSION_AM@_gir_CFLAGS = $(INCLUDES) $(CLUTTER_CFLAGS) $(AM_CPPFLAGS) -UCLUTTER_DISABLE_DEPRECATED
|
2010-09-08 13:27:12 -04:00
|
|
|
|
|
|
|
INTROSPECTION_GIRS += ClutterX11-@CLUTTER_API_VERSION@.gir
|
|
|
|
endif # SUPPORT_X11
|
|
|
|
|
2009-05-13 18:14:24 -04:00
|
|
|
# INTROSPECTION_GIRDIR/INTROSPECTION_TYPELIBDIR aren't the right place to
|
|
|
|
# install anything - we need to install inside our prefix.
|
2009-02-20 09:39:51 -05:00
|
|
|
girdir = $(datadir)/gir-1.0
|
2011-05-06 11:55:10 -04:00
|
|
|
gir_DATA = $(INTROSPECTION_GIRS)
|
2009-02-20 09:39:51 -05:00
|
|
|
|
2011-05-06 11:55:10 -04:00
|
|
|
typelibdir = $(libdir)/girepository-1.0
|
|
|
|
typelib_DATA = $(INTROSPECTION_GIRS:.gir=.typelib)
|
2009-05-13 18:14:24 -04:00
|
|
|
|
2011-05-06 11:55:10 -04:00
|
|
|
CLEANFILES += $(gir_DATA) $(typelib_DATA)
|
2009-10-18 12:12:12 -04:00
|
|
|
endif # HAVE_INTROSPECTION
|
2010-01-04 09:53:03 -05:00
|
|
|
|
2010-09-13 06:30:30 -04:00
|
|
|
# GCov rules
|
|
|
|
gcov_sources = $(source_c) $(backend_source_c)
|
2010-01-04 09:53:03 -05:00
|
|
|
include $(top_srcdir)/build/autotools/Makefile.am.gcov
|