From: Michael R. Crusoe <crusoe@debian.org>
Subject: Allow the easel Makefile to be verbosely run from the hmmer Makefile
Forwarded: not-needed
--- hmmer.orig/Makefile.in
+++ hmmer/Makefile.in
@@ -68,14 +68,14 @@
 
 # beautification magic stolen from git
 #
-QUIET_SUBDIR0 = +${MAKE} -C #space separator after -c
+QUIET_SUBDIR0 = ${MAKE} -C #space separator after -c
 QUIET_SUBDIR1 =
 ifndef V
 	QUIET         = @
 	QUIET_CC      = @echo '    ' CC $@;
 	QUIET_GEN     = @echo '    ' GEN $@;
 	QUIET_AR      = @echo '    ' AR $@;
-	QUIET_SUBDIR0 = +@subdir=
+	QUIET_SUBDIR0 = @subdir=
 	QUIET_SUBDIR1 = ; echo '    ' SUBDIR $$subdir; \
 		        ${MAKE} -s -C $$subdir
 endif
--- hmmer.orig/easel/Makefile.in
+++ hmmer/easel/Makefile.in
@@ -80,7 +80,7 @@
 
 # beautification magic, stolen from git
 #
-QUIET_SUBDIR0 = +${MAKE} -C #space separator after -c
+QUIET_SUBDIR0 = $(MAKE) -C #space separator after -c
 QUIET_SUBDIR1 =
 ifndef V
 	QUIET         = @
@@ -89,7 +89,7 @@
 	QUIET_AR      = @echo '    ' AR $@;
 	QUIET_SUBDIR0 = +@subdir=
 	QUIET_SUBDIR1 = ; echo '    ' SUBDIR  $$subdir; \
-		        ${MAKE} -s -C $$subdir
+		        $(MAKE) -s -C $$subdir
 endif
 
 
@@ -636,7 +636,7 @@
 install:
 	${INSTALL} -d ${DESTDIR}${bindir}
 	${INSTALL} -d ${DESTDIR}${man1dir}
-	${MAKE} -C miniapps install
+	+$(MAKE) -C miniapps install
 
 uninstall:
 	${MAKE} -C miniapps uninstall
--- hmmer.orig/src/Makefile.in
+++ hmmer/src/Makefile.in
@@ -230,15 +230,15 @@
 	p7_spensemble_example
 
 # beautification magic stolen from git
-QUIET_SUBDIR0 = +${MAKE} -C #space separator after -c
+QUIET_SUBDIR0 = ${MAKE} -C #space separator after -c
 QUIET_SUBDIR1 =
 ifndef V
 	QUIET_CC      = @echo '    ' CC $@;
 	QUIET_GEN     = @echo '    ' GEN $@;
 	QUIET_AR      = @echo '    ' AR $@;
-	QUIET_SUBDIR0 = +@subdir=
+	QUIET_SUBDIR0 = @subdir=
 	QUIET_SUBDIR1 = ; echo '    ' SUBDIR $$subdir; \
-		        ${MAKE} -s -C $$subdir
+		        $(MAKE) -s -C $$subdir
 endif
 
 .PHONY: all dev tests check install install-strip uninstall distclean clean TAGS
