diff options
author | Matt Turner <mattst88@gmail.com> | 2013-01-18 16:53:32 -0800 |
---|---|---|
committer | Matt Turner <mattst88@gmail.com> | 2013-01-22 22:08:30 -0800 |
commit | 61dacffaf47e6b631a2c67230f8f111038d1de09 (patch) | |
tree | d9c1213773d03ff134961beda68a11c400a99601 /test | |
parent | c7c28f440db083d69ca930b44fc6280bb558e098 (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 'test')
-rw-r--r-- | test/Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Makefile.am b/test/Makefile.am index eeb3679f..ca87f4ef 100644 --- a/test/Makefile.am +++ b/test/Makefile.am @@ -3,7 +3,7 @@ include $(top_srcdir)/test/Makefile.sources AM_CFLAGS = $(OPENMP_CFLAGS) AM_LDFLAGS = $(OPENMP_CFLAGS) $(TESTPROGS_EXTRA_LDFLAGS) LDADD = libutils.la $(top_builddir)/pixman/libpixman-1.la -lm $(PNG_LIBS) -INCLUDES = -I$(top_srcdir)/pixman -I$(top_builddir)/pixman $(PNG_CFLAGS) +AM_CPPFLAGS = -I$(top_srcdir)/pixman -I$(top_builddir)/pixman $(PNG_CFLAGS) libutils_la_SOURCES = $(libutils_sources) $(libutils_headers) |