From fe2664a5f244f27fd37b39135b5af734235c0c95 Mon Sep 17 00:00:00 2001 From: Uwe Hermann Date: Tue, 25 Aug 2009 15:03:20 +0000 Subject: 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 Acked-by: Uwe Hermann git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4577 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1 --- util/x86emu/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'util') 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 $@ -- cgit v1.2.3