diff options
author | Masahiro Yamada <yamada.m@jp.panasonic.com> | 2014-02-24 11:12:19 +0900 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2014-02-25 11:01:29 -0500 |
commit | 04a34c96b19dab48bfcc22b554227c8d9dca0238 (patch) | |
tree | e8b371c8430e86e4015a4392ca31121becc3a9eb /Makefile | |
parent | ad0fed46b97d3b46e9a5be2a45ff77536544926b (diff) | |
download | u-boot-imx-04a34c96b19dab48bfcc22b554227c8d9dca0238.zip u-boot-imx-04a34c96b19dab48bfcc22b554227c8d9dca0238.tar.gz u-boot-imx-04a34c96b19dab48bfcc22b554227c8d9dca0238.tar.bz2 |
kbuild: use shorten logs for misc targets
Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
@@ -1048,9 +1048,12 @@ depend dep: @echo '*** Warning: make $@ is unnecessary now.' # --------------------------------------------------------------------------- +quiet_cmd_cpp_lds = LDS $@ +cmd_cpp_lds = $(CPP) $(cpp_flags) $(LDPPFLAGS) -ansi -D__ASSEMBLY__ \ + -x assembler-with-cpp -P -o $@ $< -u-boot.lds: $(LDSCRIPT) prepare - $(CPP) $(cpp_flags) $(LDPPFLAGS) -ansi -D__ASSEMBLY__ -P - <$< >$@ +u-boot.lds: $(LDSCRIPT) prepare FORCE + $(call if_changed,cpp_lds) PHONY += nand_spl nand_spl: prepare |