From e8a17b97db3103c280da9e73079a1f2dceb22f2e Mon Sep 17 00:00:00 2001 From: Jonas Fonseca Date: Sat, 17 Sep 2005 14:41:51 +0200 Subject: [PATCH] Indent the output of CC and LINK Use indentation to align directory and .c file names in the output (for make all) so it is easier to distinguise lines. --- Makefile.lib | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Makefile.lib b/Makefile.lib index f1febf50..91cf7542 100644 --- a/Makefile.lib +++ b/Makefile.lib @@ -20,14 +20,14 @@ ncmd = $(if $($(quiet)cmd_$(1)),echo $($(quiet)cmd_$(1)) &&) $(cmd_$(1)) cmd = @$(if $($(quiet)cmd_$(1)),echo $($(quiet)cmd_$(1)) &&) $(cmd_$(1)) mcmd = @$(if $($(mquiet)cmd_$(1)),echo $($(mquiet)cmd_$(1)) &&) $(cmd_$(1)) -quiet_cmd_compile = '[CC] $<' +quiet_cmd_compile = ' [CC] $<' masq_cmd_compile = $(COMPILE) -c $< cmd_compile = $(COMPILE) -Wp,-MD,.deps/$(*F).pp -c $< -quiet_cmd_archive = '[AR] $@' +quiet_cmd_archive = ' [AR] $@' cmd_archive = $(AR) r $@ $^ - quiet_cmd_link = '[LINK] $@' + quiet_cmd_link = ' [LINK] $@' cmd_link = $(CC) $(LDFLAGS) -o $@ $^ $(LIBS) # Recursive make