blob: 41e07f39f167be4f932eb03e31ed9fe11206a62e [file] [log] [blame]
From d2ccba90186e2affbb3d146ada341ea2ae6fab2c Mon Sep 17 00:00:00 2001
From: Akira TAGOH <akira@tagoh.org>
Date: Mon, 13 May 2013 16:05:32 +0900
Subject: [PATCH 1/3] Use AM_CPPFLAGS instead of INCLUDES
---
docs/reference/Makefile.am | 2 +-
libgxim/Makefile.am | 2 +-
tests/Makefile.am | 2 +-
3 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/docs/reference/Makefile.am b/docs/reference/Makefile.am
index 24986e1..f785735 100644
--- a/docs/reference/Makefile.am
+++ b/docs/reference/Makefile.am
@@ -84,7 +84,7 @@ expand_content_files=
# signals and properties.
# e.g. INCLUDES=-I$(top_srcdir) -I$(top_builddir) $(GTK_DEBUG_FLAGS)
# e.g. GTKDOC_LIBS=$(top_builddir)/gtk/$(gtktargetlib)
-INCLUDES= \
+AM_CPPFLAGS= \
$(GXIM_CFLAGS) \
-I$(top_srcdir) \
$(NULL)
diff --git a/libgxim/Makefile.am b/libgxim/Makefile.am
index 572bdb5..ae1ba32 100644
--- a/libgxim/Makefile.am
+++ b/libgxim/Makefile.am
@@ -1,7 +1,7 @@
##
# Global definitions
NULL =
-INCLUDES = \
+AM_CPPFLAGS = \
$(GXIM_CFLAGS) \
-I$(top_srcdir) \
$(NULL)
diff --git a/tests/Makefile.am b/tests/Makefile.am
index 2926829..919ccc8 100644
--- a/tests/Makefile.am
+++ b/tests/Makefile.am
@@ -1,7 +1,7 @@
##
# Global definitions
NULL =
-INCLUDES = \
+AM_CPPFLAGS = \
-I$(top_srcdir)/libgxim \
-I$(top_srcdir) \
$(GXIM_CFLAGS) \
--
2.12.1