aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorAlex Riesen <raa.lkml@gmail.com>2007-03-07 00:44:37 +0100
committerShawn O. Pearce <spearce@spearce.org>2007-03-06 19:08:46 -0500
commit0c3b4aac8ecdd039bac663a7d1b6bd373b7e250d (patch)
treea0cf25da87b5816141b3fe114ecdfdd4fb59af5f /Makefile
parent0b5ea163d21163343579cd6eb9274ccc2190a0fe (diff)
downloadgit-0c3b4aac8ecdd039bac663a7d1b6bd373b7e250d.tar.gz
git-0c3b4aac8ecdd039bac663a7d1b6bd373b7e250d.tar.xz
git-gui: Support of "make -s" in: do not output anything of the build itself
Signed-off-by: Alex Riesen <raa.lkml@gmail.com> Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 5 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index e486e8f98..a219b5d47 100644
--- a/Makefile
+++ b/Makefile
@@ -27,6 +27,11 @@ ifndef V
QUIET_BUILT_IN = @echo ' ' BUILTIN $@;
endif
+ifeq ($(findstring $(MAKEFLAGS),s),s)
+QUIET_GEN =
+QUIET_BUILT_IN =
+endif
+
DESTDIR_SQ = $(subst ','\'',$(DESTDIR))
gitexecdir_SQ = $(subst ','\'',$(gitexecdir))
SHELL_PATH_SQ = $(subst ','\'',$(SHELL_PATH))