mirror of
https://github.com/brl/mutter.git
synced 2025-02-13 11:54:09 +00:00
![Neil Roberts](/assets/img/avatar_default.png)
Commit 43fa38fcf5 broke out-of-tree builds by removing some of the builddir directories from the include path. builddir/clutter/cogl and builddir/clutter are needed because cogl.h and cogl-defines-gl.h are automatically generated by the configure script. The main clutter headers are in the srcdir so this needs to be in the path too.
70 lines
1.8 KiB
Makefile
70 lines
1.8 KiB
Makefile
NULL =
|
|
|
|
cogl_headers = \
|
|
$(top_builddir)/clutter/cogl/cogl-defines-gl.h \
|
|
$(top_srcdir)/clutter/cogl/cogl-color.h \
|
|
$(top_srcdir)/clutter/cogl/cogl-deprecated.h \
|
|
$(top_srcdir)/clutter/cogl/cogl-fixed.h \
|
|
$(top_srcdir)/clutter/cogl/cogl-offscreen.h \
|
|
$(top_srcdir)/clutter/cogl/cogl-path.h \
|
|
$(top_srcdir)/clutter/cogl/cogl-shader.h \
|
|
$(top_srcdir)/clutter/cogl/cogl-bitmap.h \
|
|
$(top_srcdir)/clutter/cogl/cogl-texture.h \
|
|
$(top_srcdir)/clutter/cogl/cogl-types.h \
|
|
$(top_srcdir)/clutter/cogl/cogl-vertex-buffer.h \
|
|
$(top_srcdir)/clutter/cogl/cogl-material.h \
|
|
$(top_srcdir)/clutter/cogl/cogl-matrix.h \
|
|
$(top_srcdir)/clutter/cogl/cogl-debug.h \
|
|
$(NULL)
|
|
|
|
cogl_priv_headers = \
|
|
cogl-internal.h \
|
|
cogl-texture-private.h \
|
|
cogl-fbo.h \
|
|
cogl-shader-private.h \
|
|
cogl-program.h \
|
|
cogl-context.h \
|
|
$(NULL)
|
|
|
|
cogl_sources = \
|
|
cogl.c \
|
|
cogl-primitives.c \
|
|
cogl-texture.c \
|
|
cogl-fbo.c \
|
|
cogl-shader.c \
|
|
cogl-program.c \
|
|
cogl-context.c \
|
|
$(NULL)
|
|
|
|
coglincludedir = $(includedir)/clutter-@CLUTTER_API_VERSION@/cogl
|
|
coglinclude_HEADERS = \
|
|
$(cogl_headers) \
|
|
$(top_builddir)/clutter/cogl/cogl.h
|
|
|
|
INCLUDES = \
|
|
-I$(top_srcdir)/clutter/cogl \
|
|
-I$(top_srcdir)/clutter/cogl/common \
|
|
-I$(top_srcdir)/clutter/cogl/$(CLUTTER_COGL) \
|
|
-I$(top_srcdir)/clutter \
|
|
-I$(top_builddir)/clutter \
|
|
-I$(top_builddir)/clutter/cogl \
|
|
-DG_LOG_DOMAIN=\"Cogl-GL\" \
|
|
-DCLUTTER_COMPILATION
|
|
|
|
AM_CPPFLAGS = $(CLUTTER_CFLAGS) $(CLUTTER_DEBUG_CFLAGS) $(MAINTAINER_CFLAGS)
|
|
|
|
LDADD = $(CLUTTER_LIBS)
|
|
|
|
noinst_LTLIBRARIES = libclutter-cogl.la
|
|
|
|
libclutter_cogl_la_SOURCES = \
|
|
$(top_builddir)/clutter/cogl/cogl.h \
|
|
$(cogl_headers) \
|
|
$(cogl_priv_headers) \
|
|
$(cogl_sources) \
|
|
$(NULL)
|
|
|
|
EXTRA_DIST = cogl-defines.h.in
|
|
|
|
libclutter_cogl_la_LIBADD = $(top_builddir)/clutter/cogl/common/libclutter-cogl-common.la
|