qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-devel] [PATCH] Reformat quiet build


From: Aurelien Jarno
Subject: Re: [Qemu-devel] [PATCH] Reformat quiet build
Date: Sat, 24 Jan 2009 16:08:19 +0100
User-agent: Mutt/1.5.18 (2008-05-17)

On Fri, Jan 23, 2009 at 04:11:38PM +0100, Jan Kiszka wrote:
> Indent and align the quiet build messages more like Linux - improves
> readability of this great feature even more.
> 
> Signed-off-by: Jan Kiszka <address@hidden>

Thanks, applied.

> ---
> 
>  rules.mak |   10 +++++-----
>  1 files changed, 5 insertions(+), 5 deletions(-)
> 
> diff --git a/rules.mak b/rules.mak
> index a4955da..c4bb65b 100644
> --- a/rules.mak
> +++ b/rules.mak
> @@ -1,19 +1,19 @@
>  
>  %.o: %.c
> -     $(call quiet-command,$(CC) $(CPPFLAGS) $(CFLAGS) -c -o $@ $<,CC $@)
> +     $(call quiet-command,$(CC) $(CPPFLAGS) $(CFLAGS) -c -o $@ $<,"  CC    
> $@")
>  
>  %.o: %.S
> -     $(call quiet-command,$(CC) $(CPPFLAGS) -c -o $@ $<,AS $@)
> +     $(call quiet-command,$(CC) $(CPPFLAGS) -c -o $@ $<,"  AS    $@")
>  
>  %.o: %.m
> -     $(call quiet-command,$(CC) $(CFLAGS) $(CPPFLAGS) -c -o $@ $<,OBJC $@)
> +     $(call quiet-command,$(CC) $(CFLAGS) $(CPPFLAGS) -c -o $@ $<,"  OBJC  
> $@")
>  
> -LINK = $(call quiet-command,$(CC) $(LDFLAGS) -o $@ $^ $(LIBS),LINK $@)
> +LINK = $(call quiet-command,$(CC) $(LDFLAGS) -o $@ $^ $(LIBS),"  LINK  $@")
>  
>  %$(EXESUF): %.o
>       $(LINK)
>  
>  %.a:
> -     $(call quiet-command,rm -f $@ && $(AR) rcs $@ $^,AR $@)
> +     $(call quiet-command,rm -f $@ && $(AR) rcs $@ $^,"  AR    $@")
>  
>  quiet-command = $(if $(V),$1,@echo $2 && $1)
> 
> 
> 

-- 
Aurelien Jarno                          GPG: 1024D/F1BCDB73
address@hidden                 http://www.aurel32.net




reply via email to

[Prev in Thread] Current Thread [Next in Thread]