diff options
author | Alex Riesen <raa.lkml@gmail.com> | 2007-03-07 00:44:49 +0100 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2007-03-06 17:17:07 -0800 |
commit | b777434383bd2f365be6896d8c89be6c1b62a135 (patch) | |
tree | 620c63c154fc295b2364387634d6cb15d072795e /Makefile | |
parent | 31d0399c3c310d035cd7ed55c094f0b636ac5e20 (diff) | |
download | git-b777434383bd2f365be6896d8c89be6c1b62a135.tar.gz |
Support of "make -s": do not output anything of the build itself
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 10 |
1 files changed, 7 insertions, 3 deletions
@@ -604,6 +604,11 @@ endif ifdef NO_PERL_MAKEMAKER export NO_PERL_MAKEMAKER endif + +QUIET_SUBDIR0 = $(MAKE) -C # space to separate -C and subdir +QUIET_SUBDIR1 = + +ifneq ($(findstring $(MAKEFLAGS),s),s) ifndef V QUIET_CC = @echo ' ' CC $@; QUIET_AR = @echo ' ' AR $@; @@ -615,9 +620,8 @@ ifndef V $(MAKE) --no-print-directory -C $$subdir export V export QUIET_GEN -else - QUIET_SUBDIR0 = $(MAKE) -C - QUIET_SUBDIR1 = + export QUIET_BUILT_IN +endif endif # Shell quote (do not use $(call) to accommodate ancient setups); |