diff options
author | Ron <ron@debian.org> | 2013-06-29 15:40:27 +0930 |
---|---|---|
committer | Ron <ron@debian.org> | 2013-06-29 15:40:27 +0930 |
commit | 64b398573da586e67ef266ece6e8ef147c2e0b66 (patch) | |
tree | 551eb762cfe5a444ce96d955aa2a666d09084559 /Makefile.am | |
parent | 5bac4f26cbf1745ad6564c6ac43bc653e8772a45 (diff) | |
download | opus-64b398573da586e67ef266ece6e8ef147c2e0b66.tar.gz |
Replace INCLUDES with AM_CPPFLAGS
Automake 1.13 complains that INCLUDES is obsoleted now.
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index 86cdbf96..28694335 100644 --- a/Makefile.am +++ b/Makefile.am @@ -5,7 +5,8 @@ lib_LTLIBRARIES = libopus.la DIST_SUBDIRS = doc -INCLUDES = -I$(top_srcdir)/include -I$(top_srcdir)/celt -I$(top_srcdir)/silk -I$(top_srcdir)/silk/float -I$(top_srcdir)/silk/fixed +AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_srcdir)/celt -I$(top_srcdir)/silk \ + -I$(top_srcdir)/silk/float -I$(top_srcdir)/silk/fixed include celt_sources.mk include silk_sources.mk |