diff options
author | Masahiro Yamada <yamada.m@jp.panasonic.com> | 2014-02-04 17:24:20 +0900 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2014-02-19 11:07:50 -0500 |
commit | fea1ca8e3418bac4b55f4cc8b66a6ae0d41e91e4 (patch) | |
tree | 8e501c701078793df021836689175de2c2c98d20 /tools/env | |
parent | 2b3c9d3ddd4e0b5a55d17e164e817b42cb555639 (diff) | |
download | u-boot-imx-fea1ca8e3418bac4b55f4cc8b66a6ae0d41e91e4.zip u-boot-imx-fea1ca8e3418bac4b55f4cc8b66a6ae0d41e91e4.tar.gz u-boot-imx-fea1ca8e3418bac4b55f4cc8b66a6ae0d41e91e4.tar.bz2 |
Makefile: refactor include path settings
This commit merges commonly-used header include paths
to UBOOTINCLUDE and NOSTDINC_FLAGS variables, which are placed
at the top Makefile.
Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
Diffstat (limited to 'tools/env')
-rw-r--r-- | tools/env/Makefile | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/tools/env/Makefile b/tools/env/Makefile index c303815..d47fe16 100644 --- a/tools/env/Makefile +++ b/tools/env/Makefile @@ -6,9 +6,7 @@ # # Compile for a hosted environment on the target -HOST_EXTRACFLAGS = -idirafter $(SRCTREE)/include \ - -idirafter $(SRCTREE)/arch/$(ARCH)/include \ - -idirafter $(OBJTREE)/include \ +HOST_EXTRACFLAGS = $(patsubst -I%,-idirafter%, $(UBOOTINCLUDE)) \ -idirafter $(SRCTREE)/tools/env \ -DUSE_HOSTCC \ -DTEXT_BASE=$(TEXT_BASE) |