diff DOCS/xml/Makefile @ 11468:bb3e24e796eb

less verbosity
author diego
date Sun, 16 Nov 2003 00:57:47 +0000
parents 23192e33fad5
children 19919e913e3d
line wrap: on
line diff
--- a/DOCS/xml/Makefile	Sat Nov 15 22:46:47 2003 +0000
+++ b/DOCS/xml/Makefile	Sun Nov 16 00:57:47 2003 +0000
@@ -27,7 +27,7 @@
 .PHONY: build-html-chunked
 build-html-chunked: xsltproc.sh xmllint.sh
 	test -d $(HTML_CHUNKED) || mkdir $(HTML_CHUNKED)
-	for dir in $(SUBDIRS); do\
+	@for dir in $(SUBDIRS); do\
 		test -f $$dir/Makefile &&\
 		(test -d $(HTML_CHUNKED)/$$dir || mkdir $(HTML_CHUNKED)/$$dir) &&\
 		if $(MAKE) HTMLDIR=../$(HTML_CHUNKED)/$$dir -C $$dir html-chunked; then :; else exit 1; fi;\
@@ -36,7 +36,7 @@
 .PHONY: build-html-single
 build-html-single: xsltproc.sh xmllint.sh
 	test -d $(HTML_SINGLE) || mkdir $(HTML_SINGLE)
-	for dir in $(SUBDIRS); do\
+	@for dir in $(SUBDIRS); do\
 		test -f $$dir/Makefile &&\
 		(test -d $(HTML_SINGLE)/$$dir || mkdir $(HTML_SINGLE)/$$dir) &&\
 		if $(MAKE) HTMLFILE=../$(HTML_SINGLE)/$$dir/MPlayer.html -C $$dir html-single; then :; else exit 1; fi;\
@@ -52,7 +52,7 @@
 
 .PHONY: distclean
 distclean: clean-html-chunked clean-html-single
-	for dir in $(SUBDIRS); do\
+	@for dir in $(SUBDIRS); do\
 		test -f $$dir/Makefile &&\
 		if $(MAKE) HTMLDIR=../$(HTML_CHUNKED)/$$dir -C $$dir distclean ; then :; else exit 1; fi;\
 	done