Makefile.am: Use AM_CPPFLAGS

Since automake 1.13 INCLUDES is depricates and causes a warning
diff --git a/openbsc/Makefile.am b/openbsc/Makefile.am
index b966e69..91299f3 100644
--- a/openbsc/Makefile.am
+++ b/openbsc/Makefile.am
@@ -1,6 +1,6 @@
 AUTOMAKE_OPTIONS = foreign dist-bzip2 1.6
 
-INCLUDES = $(all_includes) -I$(top_srcdir)/include
+AM_CPPFLAGS = $(all_includes) -I$(top_srcdir)/include
 SUBDIRS = doc include src tests
 
 pkgconfigdir = $(libdir)/pkgconfig