94b35a4a5e
CC_FLAGS was a left over from the 0.8.x age. Killed it and use the newer MAINTAINER_CFLAGS variable instead.
25 lines
590 B
Makefile
25 lines
590 B
Makefile
libclutterincludedir = $(includedir)/clutter-@CLUTTER_MAJORMINOR@/clutter
|
|
libclutterinclude_HEADERS = clutter-egl.h
|
|
|
|
INCLUDES = \
|
|
-DG_LOG_DOMAIN=\"ClutterEGL\" \
|
|
-DCLUTTER_COMPILATION \
|
|
-I$(top_srcdir) \
|
|
-I$(top_srcdir)/clutter \
|
|
-I$(top_builddir)/clutter \
|
|
$(CLUTTER_CFLAGS) \
|
|
$(CLUTTER_DEBUG_CFLAGS) \
|
|
$(MAINTAINER_CFLAGS)
|
|
|
|
LDADD = $(CLUTTER_LIBS)
|
|
|
|
noinst_LTLIBRARIES = libclutter-eglnative.la
|
|
|
|
libclutter_eglnative_la_SOURCES = \
|
|
clutter-backend-egl.h \
|
|
clutter-backend-egl.c \
|
|
clutter-event-egl.c \
|
|
clutter-stage-egl.h \
|
|
clutter-stage-egl.c \
|
|
clutter-egl-headers.h
|