mirror of
https://github.com/brl/mutter.git
synced 2025-03-10 13:25:05 +00:00

* clutter/glx/Makefile.am: * clutter/glx/clutter-glx-texture-pixmap.c: * clutter/glx/clutter-glx-texture-pixmap.h: * clutter/x11/Makefile.am: * clutter/x11/clutter-x11-texture-pixmap.c: * tests/test-pixmap.c: Commit newer x11 texture pixmap stuff (optionally using SHM). Also seemingly still broken overhauled glx-texture-pixmap (code by Robert and myself) * configure.ac: Minor formatting change.
26 lines
660 B
Makefile
26 lines
660 B
Makefile
libclutter_glx_includedir = $(includedir)/clutter-@CLUTTER_API_VERSION@/clutter/glx
|
|
libclutter_glx_include_HEADERS = clutter-glx.h clutter-glx-texture-pixmap.h
|
|
|
|
INCLUDES = \
|
|
-DG_LOG_DOMAIN=\"ClutterGLX\" \
|
|
-I$(top_srcdir) \
|
|
-I$(top_srcdir)/clutter \
|
|
-I$(top_srcdir)/clutter/x11 \
|
|
-I$(top_builddir)/clutter \
|
|
$(CLUTTER_CFLAGS) \
|
|
$(CLUTTER_DEBUG_CFLAGS) \
|
|
$(GCC_FLAGS)
|
|
|
|
LDADD = $(CLUTTER_LIBS)
|
|
|
|
noinst_LTLIBRARIES = libclutter-glx.la
|
|
|
|
libclutter_glx_la_SOURCES = \
|
|
clutter-backend-glx.h \
|
|
clutter-backend-glx.c \
|
|
clutter-stage-glx.h \
|
|
clutter-stage-glx.c \
|
|
clutter-glx-texture-pixmap.h \
|
|
clutter-glx-texture-pixmap.c \
|
|
clutter-glx.h
|