mirror of
https://github.com/brl/mutter.git
synced 2024-11-23 08:30:42 -05:00
e33a94bff4
Commit 7fae8ac051
changed cogl-defines.h.in so there is only a
single copy in clutter/cogl/ instead of one for each driver. However
the old files were still mentioned in the EXTRA_DIST of the
Makefile.am so make distcheck was failing.
37 lines
735 B
Makefile
37 lines
735 B
Makefile
include $(top_srcdir)/build/autotools/Makefile.am.silent
|
|
|
|
NULL =
|
|
|
|
INCLUDES = \
|
|
-I$(top_srcdir) \
|
|
-I$(srcdir) \
|
|
-I$(srcdir)/../.. \
|
|
-I$(srcdir)/../../.. \
|
|
-I$(srcdir)/../../winsys \
|
|
-I../.. \
|
|
-I../../.. \
|
|
-DG_DISABLE_SINGLE_INCLUDES \
|
|
-DG_LOG_DOMAIN=\"Cogl-Driver\" \
|
|
-DCLUTTER_COMPILATION
|
|
|
|
noinst_LTLIBRARIES = libclutter-cogl-driver.la
|
|
libclutter_cogl_driver_la_CPPFLAGS = \
|
|
$(CLUTTER_CFLAGS) \
|
|
$(COGL_DEBUG_CFLAGS) \
|
|
$(CLUTTER_DEBUG_CFLAGS) \
|
|
$(MAINTAINER_CFLAGS)
|
|
libclutter_cogl_driver_la_SOURCES = \
|
|
cogl.c \
|
|
cogl-texture-driver.c \
|
|
cogl-shader-private.h \
|
|
cogl-shader.c \
|
|
cogl-program.h \
|
|
cogl-program.c \
|
|
cogl-context-driver.h \
|
|
cogl-context-driver.c \
|
|
cogl-feature-functions.h \
|
|
$(NULL)
|
|
|
|
|
|
|