b398292089
The DeviceManager class should be abstract in Clutter, and implemented by each backend, as different backends will have different ways to detect, initialize and list devices; the X11 backend alone has *two* ways of dealing with devices. This commit makes DeviceManager an abstract class and delegates the device initialization and enumeration to per-backend sub-classes. The responsible for creating the device manager is, obviously, the backend singleton. The X11 and Win32 backends have been updated to the new layout; the Win32 backend has been updated blindly, so it might require additional testing.
81 lines
2.3 KiB
Makefile
81 lines
2.3 KiB
Makefile
include $(top_srcdir)/build/autotools/Makefile.am.silent
|
|
|
|
INCLUDES = \
|
|
-DG_LOG_DOMAIN=\"ClutterX11\" \
|
|
-DCLUTTER_COMPILATION \
|
|
-I$(top_srcdir) \
|
|
-I$(top_srcdir)/clutter \
|
|
-I$(top_srcdir)/clutter/cogl \
|
|
-I$(top_builddir)/clutter \
|
|
-I$(top_builddir)/clutter/cogl \
|
|
$(CLUTTER_CFLAGS) \
|
|
$(CLUTTER_DEBUG_CFLAGS) \
|
|
$(MAINTAINER_CFLAGS)
|
|
|
|
LDADD = $(CLUTTER_LIBS)
|
|
|
|
source_h = \
|
|
$(top_srcdir)/clutter/x11/clutter-x11-texture-pixmap.h \
|
|
$(top_srcdir)/clutter/x11/clutter-x11.h
|
|
|
|
BUILT_SOURCES = clutter-x11-enum-types.h clutter-x11-enum-types.c
|
|
|
|
clutter-x11-enum-types.h: stamp-clutter-x11-enum-types.h
|
|
@true
|
|
stamp-clutter-x11-enum-types.h: $(source_h) Makefile
|
|
$(QUIET_GEN)( $(GLIB_MKENUMS) \
|
|
--template $(srcdir)/clutter-x11-enum-types.h.in \
|
|
$(source_h) ) >> xgen-ceth && \
|
|
(cmp -s xgen-ceth clutter-x11-enum-types.h || cp xgen-ceth clutter-x11-enum-types.h ) && \
|
|
rm -f xgen-ceth && \
|
|
echo timestamp > $(@F)
|
|
|
|
clutter-x11-enum-types.c: clutter-x11-enum-types.h
|
|
$(QUIET_GEN)( $(GLIB_MKENUMS) \
|
|
--template $(srcdir)/clutter-x11-enum-types.c.in \
|
|
$(source_h) ) >> xgen-cetc && \
|
|
cp xgen-cetc clutter-x11-enum-types.c && \
|
|
rm -f xgen-cetc
|
|
|
|
noinst_LTLIBRARIES = libclutter-x11.la
|
|
|
|
libclutter_x11_la_SOURCES = \
|
|
clutter-backend-x11.h \
|
|
clutter-backend-x11.c \
|
|
clutter-device-manager-x11.h \
|
|
clutter-device-manager-x11.c \
|
|
clutter-event-x11.c \
|
|
clutter-input-device-x11.h \
|
|
clutter-input-device-x11.c \
|
|
clutter-stage-x11.h \
|
|
clutter-stage-x11.c \
|
|
clutter-x11-enum-types.h \
|
|
clutter-x11-enum-types.c \
|
|
clutter-x11-texture-pixmap.h \
|
|
clutter-x11-texture-pixmap.c \
|
|
clutter-x11.h
|
|
|
|
libclutter_x11_includedir = $(includedir)/clutter-@CLUTTER_API_VERSION@/clutter/x11
|
|
libclutter_x11_include_HEADERS = \
|
|
clutter-x11.h \
|
|
clutter-x11-enum-types.h \
|
|
clutter-x11-texture-pixmap.h
|
|
|
|
clutter-x11-$(CLUTTER_API_VERSION).pc: clutter-x11.pc
|
|
@cp -f $< $(@F)
|
|
|
|
pkgconfig_DATA = clutter-x11-@CLUTTER_API_VERSION@.pc
|
|
pkgconfigdir = $(libdir)/pkgconfig
|
|
|
|
CLEANFILES = clutter-x11-$(CLUTTER_API_VERSION).pc
|
|
|
|
DISTCLEANFILES = \
|
|
stamp-clutter-x11-enum-types.h \
|
|
clutter-x11-enum-types.h \
|
|
clutter-x11-enum-types.c
|
|
|
|
EXTRA_DIST = \
|
|
clutter-x11.pc.in \
|
|
clutter-x11-enum-types.h.in \
|
|
clutter-x11-enum-types.c.in
|