forked from ~ljy/RK356X_SDK_RELEASE

hc
2024-01-31 f70575805708cabdedea7498aaa3f710fde4d920
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
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