mirror of
https://github.com/brl/mutter.git
synced 2024-11-23 16:40:41 -05:00
70dc3ecbd6
• Use the public COGL_HAS_GLES[12] define instead of the HAVE_COGL_* ones which are private and defined in config.h, • Install clutter-egl-headers.h which is needed by clutter-egl.h, • Remove clutter-stage.h as it's uneeded and does not work since the single clutter.h include policy, • Install the egl headers into their own egl directory as the x11 and glx backends do. The include should then be <clutter/egl/clutter-egl.h>, so document it. It does not really break anything as nobody could have used those broken headers.
46 lines
1.1 KiB
Makefile
46 lines
1.1 KiB
Makefile
libclutterincludedir = $(includedir)/clutter-@CLUTTER_API_VERSION@/clutter/egl
|
|
libclutterinclude_HEADERS = clutter-egl.h clutter-egl-headers.h
|
|
|
|
INCLUDES = \
|
|
-DG_LOG_DOMAIN=\"ClutterEGL\" \
|
|
-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)
|
|
if SUPPORT_X11
|
|
INCLUDES += -I$(top_srcdir)/clutter/x11
|
|
endif
|
|
|
|
LDADD = $(CLUTTER_LIBS)
|
|
if SUPPORT_X11
|
|
LDADD += $(top_builddir)/clutter/x11/libclutter-x11.la
|
|
endif
|
|
|
|
noinst_LTLIBRARIES = libclutter-egl.la
|
|
|
|
if SUPPORT_X11
|
|
libclutter_egl_la_DEPENDENCIES = \
|
|
$(top_builddir)/clutter/x11/libclutter-x11.la
|
|
endif
|
|
|
|
libclutter_egl_la_SOURCES = \
|
|
clutter-backend-egl.h \
|
|
clutter-backend-egl.c \
|
|
clutter-stage-egl.h \
|
|
clutter-stage-egl.c \
|
|
clutter-egl.h \
|
|
clutter-egl-headers.h
|
|
|
|
if USE_TSLIB
|
|
libclutter_egl_la_SOURCES += clutter-event-tslib.c
|
|
endif
|
|
|
|
if SUPPORT_CEX100
|
|
libclutter_egl_la_SOURCES += clutter-backend-cex100.c clutter-backend-cex100.h
|
|
endif
|