diff options
author | Uwe Hermann <uwe@hermann-uwe.de> | 2009-08-25 15:03:20 +0000 |
---|---|---|
committer | Uwe Hermann <uwe@hermann-uwe.de> | 2009-08-25 15:03:20 +0000 |
commit | fe2664a5f244f27fd37b39135b5af734235c0c95 (patch) | |
tree | 6b09e5fd3de00cee95770418fcbe5b98e002566f /util/x86emu | |
parent | 20a1ae88404c6ca0e97191516ae9cda440568df5 (diff) | |
download | coreboot-fe2664a5f244f27fd37b39135b5af734235c0c95.tar.xz |
Improve build output.
The Makefile prints need to be @printf -- not $(Q)printf -- as they should
(1) be printed always (with 'make' _and_ with 'make V=1'),
(2) but the printf command itself should not be printed, hence the '@'.
Signed-off-by: Uwe Hermann <uwe@hermann-uwe.de>
Acked-by: Uwe Hermann <uwe@hermann-uwe.de>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4577 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'util/x86emu')
-rw-r--r-- | util/x86emu/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/util/x86emu/Makefile b/util/x86emu/Makefile index 2c915d466b..ee5982d248 100644 --- a/util/x86emu/Makefile +++ b/util/x86emu/Makefile @@ -57,7 +57,7 @@ PCIROM_SRC += $(patsubst %,$(src)/util/x86emu/%,$(LIBX86EMU_SRC)) $(obj)/util/x86emu/libx86emu.a: $(LIBX86EMU_OBJS) $(src)/.config - $(Q)printf " AR $(subst $(shell pwd)/,,$(@))\n" + @printf " AR $(subst $(shell pwd)/,,$(@))\n" $(Q)rm -f $@ # otherwise we always add to the archive $(Q)$(AR) qcs $@ $(LIBX86EMU_OBJS) @@ -66,7 +66,7 @@ $(obj)/util/x86emu/libx86emu.a: $(LIBX86EMU_OBJS) $(src)/.config # $(obj)/util/x86emu/%.o: $(src)/util/x86emu/%.c + @printf " CC $(subst $(shell pwd)/,,$(@))\n" $(Q)mkdir -p $(dir $@) - $(Q)printf " CC $(subst $(shell pwd)/,,$(@))\n" $(Q)$(CC) -Werror $(INITCFLAGS) $(X86EMU_INCLUDE) -I$(src)/util/x86emu/include -c $< -o $@ |