summaryrefslogtreecommitdiff
path: root/MCONFIG.in
diff options
context:
space:
mode:
authorTheodore Ts'o <tytso@mit.edu>2009-07-02 00:11:17 -0400
committerTheodore Ts'o <tytso@mit.edu>2009-07-02 00:11:17 -0400
commitc13351f6c53f175696044c0203bb3009af606c64 (patch)
tree1535231305f9eb4493ba78a2d729575642f29ab3 /MCONFIG.in
parenta6a1c0815c045fd12f65546e16d495338097f32a (diff)
downloade2fsprogs-c13351f6c53f175696044c0203bb3009af606c64.tar.gz
Add support for configure --enable-verbose-makecmds
Some people don't want to see the concise "kernel-style" make output. This configure option allows build engines that want to see the full set of commands executed by the makefile to get what they want. Most people will find this more distracting than useful, unless they need to debug the Makefiles. (It is not necessary to rerun configure to enable this verbose make output temprarily; if a developer wants to do a quick debug of a directory's makefile, he or she can simply edit the definition of the $(E) and $(Q) variables in the Makefile; instructions can be found in the MCONFIG file which is included in at the beginning of every Makefile.) Signed-off-by: "Theodore Ts'o" <tytso@mit.edu>
Diffstat (limited to 'MCONFIG.in')
-rw-r--r--MCONFIG.in11
1 files changed, 11 insertions, 0 deletions
diff --git a/MCONFIG.in b/MCONFIG.in
index bc233382..6381eac2 100644
--- a/MCONFIG.in
+++ b/MCONFIG.in
@@ -32,6 +32,17 @@ datadir = @datadir@
@SET_MAKE@
+E = @E@
+Q = @Q@
+
+# Uncomment to pretty-print the makefile commands
+# E = @echo
+# Q = @
+#
+# Uncomment to show the full makefile commands
+# E = @\#
+# Q =
+
CC = @CC@
BUILD_CC = @BUILD_CC@
DEFS = -DLOCALEDIR=\"$(localedir)\" -DROOT_SYSCONFDIR=\"$(root_sysconfdir)\" @DEFS@