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>
diff --git a/lib/Makefile.checker b/lib/Makefile.checker
index 8382a51..cdc1d7b 100644
--- a/lib/Makefile.checker
+++ b/lib/Makefile.checker
@@ -1,16 +1,16 @@
 all:: $(LIBRARY)_chk.a
 
 real-subdirs:: Makefile
-	@echo "	MKDIR checker"
-	@mkdir -p checker
+	$(E) "	MKDIR checker"
+	$(Q) mkdir -p checker
 
 clean::
 	$(RM) -rf checker
 
 $(LIBRARY)_chk.a: $(OBJS)
-	@echo "	GEN_CHECKER_LIB $@"
-	@(test -r $@ && $(RM) -f $@.bak && $(MV) $@ $@.bak)
-	(cd checker; $(ARGEN) $@ $(OBJS))
-	-@$(RANLIB) $@
-	@$(RM) -f ../$@
-	@$(LN) $@ ../$@
+	$(E) "	GEN_CHECKER_LIB $@"
+	$(Q) (test -r $@ && $(RM) -f $@.bak && $(MV) $@ $@.bak)
+	$(Q) (cd checker; $(ARGEN) $@ $(OBJS))
+	-$(Q) $(RANLIB) $@
+	$(Q) $(RM) -f ../$@
+	$(Q) $(LN) $@ ../$@