diff mbox

[U-Boot] kbuild: add user-supplied CPPFLAGS, AFLAGS and CFLAGS

Message ID 1397540860-6029-1-git-send-email-yamada.m@jp.panasonic.com
State Accepted
Delegated to: Tom Rini
Headers show

Commit Message

Masahiro Yamada April 15, 2014, 5:47 a.m. UTC
Like Linux Kernel, this commit provides environment variables
KCPPFLAGS, KAFLAGS and KCFLAGS, which are useful to pass
additional options.

Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
---
 Makefile | 5 +++++
 1 file changed, 5 insertions(+)

Comments

Tom Rini April 18, 2014, 9:02 p.m. UTC | #1
On Tue, Apr 15, 2014 at 02:47:40PM +0900, Masahiro Yamada wrote:

> Like Linux Kernel, this commit provides environment variables
> KCPPFLAGS, KAFLAGS and KCFLAGS, which are useful to pass
> additional options.
> 
> Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>

Applied to u-boot/master, thanks!
diff mbox

Patch

diff --git a/Makefile b/Makefile
index 970a219..0191869 100644
--- a/Makefile
+++ b/Makefile
@@ -584,6 +584,11 @@  endif
 
 export CONFIG_SYS_TEXT_BASE
 
+# Add user supplied CPPFLAGS, AFLAGS and CFLAGS as the last assignments
+KBUILD_CPPFLAGS += $(KCPPFLAGS)
+KBUILD_AFLAGS += $(KAFLAGS)
+KBUILD_CFLAGS += $(KCFLAGS)
+
 # Use UBOOTINCLUDE when you must reference the include/ directory.
 # Needed to be compatible with the O= option
 UBOOTINCLUDE    := \