mirror of
https://github.com/brl/mutter.git
synced 2024-11-13 01:36:10 -05:00
90b74458d2
Currently, it's just an example and an image, but it should be easy to flesh it out properly for the "Text" chapter.
32 lines
721 B
Makefile
32 lines
721 B
Makefile
include $(top_srcdir)/build/autotools/Makefile.am.silent
|
|
|
|
NULL =
|
|
|
|
noinst_PROGRAMS = \
|
|
textures-reflection \
|
|
text-shadow \
|
|
$(NULL)
|
|
|
|
INCLUDES = \
|
|
-I$(top_srcdir)/ \
|
|
-I$(top_srcdir)/clutter \
|
|
-I$(top_srcdir)/clutter/cogl \
|
|
-I$(top_srcdir)/clutter/cogl/pango \
|
|
-I$(top_builddir)/clutter \
|
|
-I$(top_builddir)/clutter/cogl \
|
|
$(NULL)
|
|
|
|
LDADD = $(top_builddir)/clutter/libclutter-@CLUTTER_SONAME_INFIX@-@CLUTTER_API_VERSION@.la
|
|
|
|
AM_CFLAGS = \
|
|
$(CLUTTER_CFLAGS) \
|
|
$(MAINTAINER_CFLAGS) \
|
|
-DG_DISABLE_SINGLE_INCLUDES \
|
|
-DTESTS_DATA_DIR=\""$(top_srcdir)/tests/data/"\"
|
|
|
|
AM_LDFLAGS = $(CLUTTER_LIBS)
|
|
|
|
textures_reflection_SOURCES = textures-reflection.c
|
|
|
|
text_shadow_SOURCES = text-shadow.c
|