bb3dc013bf
The cookbook should also include fully functional code examples. We can even XInclude them into the docbook XML itself. The examples should be built with the coobook, so that we can always make sure they are up to date.
29 lines
666 B
Makefile
29 lines
666 B
Makefile
include $(top_srcdir)/build/autotools/Makefile.am.silent
|
|
|
|
NULL =
|
|
|
|
noinst_PROGRAMS = \
|
|
textures-reflection \
|
|
$(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
|