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.profile b/lib/Makefile.profile
index a2e77c6..1e07b35 100644
--- a/lib/Makefile.profile
+++ b/lib/Makefile.profile
@@ -1,26 +1,26 @@
 all:: $(LIBRARY)_p.a
 
 real-subdirs:: Makefile
-	@echo "	MKDIR profiled"
-	@mkdir -p profiled
+	$(E) "	MKDIR profiled"
+	$(Q) mkdir -p profiled
 
 clean::
 	$(RM) -rf profiled
 	$(RM) -f $(LIBRARY)_p.a ../$(LIBRARY)_p.a
 
 $(LIBRARY)_p.a: $(OBJS)
-	@echo "	GEN_PROFILED_LIB $(ELF_LIB)"
-	@(if test -r $@; then $(RM) -f $@.bak && $(MV) $@ $@.bak; fi)
-	@(cd profiled; $(ARUPD) ../$@ $(OBJS))
-	-@$(RANLIB) $@
-	@$(RM) -f ../$@
-	@$(LN) $@ ../$@
+	$(E) "	GEN_PROFILED_LIB $(ELF_LIB)"
+	$(Q) (if test -r $@; then $(RM) -f $@.bak && $(MV) $@ $@.bak; fi)
+	$(Q) (cd profiled; $(ARUPD) ../$@ $(OBJS))
+	-$(Q) $(RANLIB) $@
+	$(Q) $(RM) -f ../$@
+	$(Q) $(LN) $@ ../$@
 
 install:: $(LIBRARY)_p.a installdirs
-	@echo "	INSTALL_DATA $(libdir)/$(LIBRARY)_p.a"
-	@$(INSTALL_DATA) $(LIBRARY)_p.a $(DESTDIR)$(libdir)/$(LIBRARY)_p.a
-	@-$(RANLIB) $(DESTDIR)$(libdir)/$(LIBRARY)_p.a
-	@$(CHMOD) $(LIBMODE) $(DESTDIR)$(libdir)/$(LIBRARY)_p.a
+	$(E) "	INSTALL_DATA $(libdir)/$(LIBRARY)_p.a"
+	$(Q) $(INSTALL_DATA) $(LIBRARY)_p.a $(DESTDIR)$(libdir)/$(LIBRARY)_p.a
+	-$(Q) $(RANLIB) $(DESTDIR)$(libdir)/$(LIBRARY)_p.a
+	$(Q) $(CHMOD) $(LIBMODE) $(DESTDIR)$(libdir)/$(LIBRARY)_p.a
 
 uninstall::
 	$(RM) -f $(DESTDIR)$(libdir)/$(LIBRARY)_p.a