summaryrefslogtreecommitdiff
path: root/demos
diff options
context:
space:
mode:
authorMatt Turner <mattst88@gmail.com>2013-01-18 16:53:32 -0800
committerMatt Turner <mattst88@gmail.com>2013-01-22 22:08:30 -0800
commit61dacffaf47e6b631a2c67230f8f111038d1de09 (patch)
treed9c1213773d03ff134961beda68a11c400a99601 /demos
parentc7c28f440db083d69ca930b44fc6280bb558e098 (diff)
Convert INCLUDES to AM_CPPFLAGS
INCLUDES has been deprecated starting with automake 1.13. Convert all occurrences with the recommended AM_CPPFLAGS replacement.
Diffstat (limited to 'demos')
-rw-r--r--demos/Makefile.am2
1 files changed, 1 insertions, 1 deletions
diff --git a/demos/Makefile.am b/demos/Makefile.am
index 3f2a3fa..5f53407 100644
--- a/demos/Makefile.am
+++ b/demos/Makefile.am
@@ -4,7 +4,7 @@ AM_CFLAGS = $(OPENMP_CFLAGS)
AM_LDFLAGS = $(OPENMP_CFLAGS)
LDADD = $(top_builddir)/pixman/libpixman-1.la -lm $(GTK_LIBS) $(PNG_LIBS)
-INCLUDES = -I$(top_srcdir)/pixman -I$(top_builddir)/pixman $(GTK_CFLAGS) $(PNG_CFLAGS)
+AM_CPPFLAGS = -I$(top_srcdir)/pixman -I$(top_builddir)/pixman $(GTK_CFLAGS) $(PNG_CFLAGS)
GTK_UTILS = gtk-utils.c gtk-utils.h ../test/utils.c ../test/utils.h \
../test/utils-prng.c ../test/utils-prng.h