aboutsummaryrefslogtreecommitdiffhomepage
path: root/Makefile.local
diff options
context:
space:
mode:
authorGravatar Carl Worth <cworth@cworth.org>2010-04-01 00:07:08 -0700
committerGravatar Carl Worth <cworth@cworth.org>2010-04-01 00:07:08 -0700
commitc20be126e5e52af9b8cdff5685124e4a867e375a (patch)
treeed8084c02ba1ea2302d692f8adb376bc7b520577 /Makefile.local
parent33d5cc415ec31d14f126dbb19f8538b04d2c1b49 (diff)
Makefiles: Align the columns of output.
Much better.
Diffstat (limited to 'Makefile.local')
-rw-r--r--Makefile.local12
1 files changed, 6 insertions, 6 deletions
diff --git a/Makefile.local b/Makefile.local
index 03e32371..9b7423ed 100644
--- a/Makefile.local
+++ b/Makefile.local
@@ -38,21 +38,21 @@ endif
# user how to enable verbose compiles.
ifeq ($(V),)
quiet_DOC := "Use \"$(MAKE) V=1\" to see the verbose compile lines.\n"
-quiet = @printf $(quiet_DOC)$(eval quiet_DOC:=)" $1 $2 $@\n"; $($1)
-quiet_args = @printf $(quiet_DOC)$(eval quiet_DOC:=)" $1 $2\n"; $($1) $2
+quiet = @printf $(quiet_DOC)$(eval quiet_DOC:=)" %12s $@\n" "$1 $2"; $($1)
+quiet_args = @printf $(quiet_DOC)$(eval quiet_DOC:=)" %12s$2\n" $1; $($1) $2
endif
# The user has explicitly enabled quiet compilation.
ifeq ($(V),0)
-quiet = @printf " $1 $2 $@\n"; $($1)
-quiet_args = @printf " $1 $2\n"; $($1) $2
+quiet = @printf " %12s $@\n" "$1 $2"; $($1)
+quiet_args = @printf " %12s$2\n" $1; $($1) $2
endif
# Otherwise, print the full command line.
quiet ?= $($1)
quiet_args ?= $($1) $2
quiet_mkdir = $(call quiet_args,MKDIR,$1)
-quiet_install_bin = $(call quiet_args,INSTBIN,$1)
-quiet_install_data = $(call quiet_args,INSTDATA,$1)
+quiet_install_bin = $(call quiet_args,INSTALL-BIN,$1)
+quiet_install_data = $(call quiet_args,INSTALL-DATA,$1)
quiet_symlink = $(call quiet_args,SYMLINK,$1)
%.o: %.cc $(global_deps)