2009-05-06 05:55:17 -04:00
|
|
|
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-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
|
2008-10-30 13:25:00 -04:00
|
|
|
|
2007-03-26 19:18:39 -04:00
|
|
|
INCLUDES = \
|
|
|
|
-I$(top_srcdir)/clutter/cogl \
|
2008-04-25 09:37:36 -04:00
|
|
|
-I$(top_srcdir)/clutter/cogl/common \
|
|
|
|
-I$(top_srcdir)/clutter/cogl/$(CLUTTER_COGL) \
|
2009-05-12 09:15:37 -04:00
|
|
|
-I$(top_srcdir)/clutter \
|
2008-04-25 09:37:36 -04:00
|
|
|
-I$(top_builddir)/clutter \
|
2009-05-12 09:15:37 -04:00
|
|
|
-I$(top_builddir)/clutter/cogl \
|
2009-05-06 05:55:17 -04:00
|
|
|
-DG_LOG_DOMAIN=\"Cogl-GL\" \
|
|
|
|
-DCLUTTER_COMPILATION
|
|
|
|
|
2007-03-26 19:18:39 -04:00
|
|
|
noinst_LTLIBRARIES = libclutter-cogl.la
|
|
|
|
|
2009-05-19 11:00:18 -04:00
|
|
|
libclutter_cogl_la_CPPFLAGS = $(CLUTTER_CFLAGS) $(COGL_DEBUG_CFLAGS) $(CLUTTER_DEBUG_CFLAGS) $(MAINTAINER_CFLAGS)
|
2009-05-14 18:23:00 -04:00
|
|
|
libclutter_cogl_la_LIBADD = -lm $(CLUTTER_LIBS) $(top_builddir)/clutter/cogl/common/libclutter-cogl-common.la
|
|
|
|
libclutter_cogl_la_DEPENDENCIES = $(top_builddir)/clutter/cogl/common/libclutter-cogl-common.la
|
2008-04-25 09:37:36 -04:00
|
|
|
libclutter_cogl_la_SOURCES = \
|
2009-05-06 05:55:17 -04:00
|
|
|
$(top_builddir)/clutter/cogl/cogl.h \
|
|
|
|
$(cogl_headers) \
|
|
|
|
$(cogl_priv_headers) \
|
|
|
|
$(cogl_sources) \
|
|
|
|
$(NULL)
|
2008-04-25 09:37:36 -04:00
|
|
|
|
2008-04-28 12:57:44 -04:00
|
|
|
EXTRA_DIST = cogl-defines.h.in
|