a32eca26b6
Bug 1212 - Allow only a single include file for Clutter * clutter/*.h: Only allow including clutter.h in third party code. * clutter/cogl/cogl-color.h: * clutter/cogl/cogl-fixed.h: * clutter/cogl/cogl.h.in: Only allow including cogl.h in third party code. * clutter/cogl/common/Makefile.am: * clutter/cogl/gl/Makefile.am: * clutter/cogl/gles/Makefile.am: * clutter/eglnative/Makefile.am: * clutter/eglx/Makefile.am: * clutter/fruity/Makefile.am: * clutter/glx/Makefile.am: * clutter/glx/clutter-glx.h: * clutter/osx/Makefile.am: * clutter/pango/Makefile.am: * clutter/sdl/Makefile.am: * clutter/win32/Makefile.am: * clutter/x11/Makefile.am: Fix build environment. * clutter/x11/clutter-x11-texture-pixmap.h: * clutter/x11/clutter-x11.h: Fix inclusion rules. * tests/test-pixmap.c: Fix inclusion of GdkPixbuf header. * README: Update release notes.
30 lines
821 B
Makefile
30 lines
821 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 \
|
|
-DCLUTTER_COMPILATION \
|
|
$(CLUTTER_CFLAGS) \
|
|
$(CLUTTER_DEBUG_CFLAGS) \
|
|
$(GCC_FLAGS)
|
|
|
|
LDADD = $(CLUTTER_LIBS) $(top_builddir)/clutter/x11/libclutter-x11.la
|
|
|
|
noinst_LTLIBRARIES = libclutter-glx.la
|
|
|
|
libclutter_glx_la_DEPENDENCIES = \
|
|
$(top_builddir)/clutter/x11/libclutter-x11.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
|