summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 74f2b2a)
raw | patch | inline | side by side (parent: 74f2b2a)
author | Shawn O. Pearce <spearce@spearce.org> | |
Tue, 6 Mar 2007 07:09:14 +0000 (02:09 -0500) | ||
committer | Junio C Hamano <junkio@cox.net> | |
Tue, 6 Mar 2007 08:48:13 +0000 (00:48 -0800) |
Per Junio's suggestion we are setting 'make' to be quiet by default,
with `make V=1` available to force GNU make back to its default
behavior of showing each command it is running.
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
with `make V=1` available to force GNU make back to its default
behavior of showing each command it is running.
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Makefile | patch | blob | history | |
perl/Makefile | patch | blob | history | |
templates/Makefile | patch | blob | history |
diff --git a/Makefile b/Makefile
index 66ab992442299b810c6ebfb5936f0773a9bac39b..72d42917d92256bd12682b715012b7c5d8559c8e 100644 (file)
--- a/Makefile
+++ b/Makefile
# The default target of this Makefile is...
all::
-# Define QUIET_MAKE to have a less verbose compile.
+# Define V=1 to have a more verbose compile.
#
# Define NO_OPENSSL environment variable if you do not have OpenSSL.
# This also implies MOZILLA_SHA1.
ifdef NO_PERL_MAKEMAKER
export NO_PERL_MAKEMAKER
endif
-ifdef QUIET_MAKE
+ifndef V
QUIET_CC = @echo ' ' CC $<;
QUIET_AR = @echo ' ' AR $@;
QUIET_LINK = @echo ' ' LINK $@;
QUIET_GEN = @echo ' ' GEN $@;
QUIET_SUBDIR0 = @subdir=
QUIET_SUBDIR1 = ;echo ' ' SUBDIR $$subdir; $(MAKE) -C$$subdir
- export QUIET_MAKE
+ export V
else
QUIET_SUBDIR0 = $(MAKE) -C
QUIET_SUBDIR1 =
diff --git a/perl/Makefile b/perl/Makefile
index 2fceff27910d45359bd9955745a92020f501cd0e..17d004e5a0a19dc59b928a96a71d1470deb06e53 100644 (file)
--- a/perl/Makefile
+++ b/perl/Makefile
PERL_PATH_SQ = $(subst ','\'',$(PERL_PATH))
prefix_SQ = $(subst ','\'',$(prefix))
-ifdef QUIET_MAKE
+ifndef V
QUIET = @
endif
diff --git a/templates/Makefile b/templates/Makefile
index 81bd86ccf3949afe8d2381f4ed2fcceb0439d698..b8352e731bf4baffbda780a1420f52ca4670b828 100644 (file)
--- a/templates/Makefile
+++ b/templates/Makefile
# make and install sample templates
-ifdef QUIET_MAKE
+ifndef V
QUIET = @
endif