diff DOCS/xml/Makefile @ 11841:67550c3b21a5

Make the build system print everything it does.
author diego
date Sat, 24 Jan 2004 22:31:11 +0000
parents c219c245aa50
children 51e14a023339
line wrap: on
line diff
--- a/DOCS/xml/Makefile	Sat Jan 24 17:13:31 2004 +0000
+++ b/DOCS/xml/Makefile	Sat Jan 24 22:31:11 2004 +0000
@@ -26,8 +26,8 @@
 
 .PHONY: html-chunked
 html-chunked: xsltproc.sh xmllint.sh
-	@test -d $(HTML_CHUNKED) || mkdir $(HTML_CHUNKED)
-	@for dir in $(SUBDIRS); do\
+	test -d $(HTML_CHUNKED) || mkdir $(HTML_CHUNKED)
+	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;\
@@ -35,8 +35,8 @@
 
 .PHONY: html-single
 html-single: xsltproc.sh xmllint.sh
-	@test -d $(HTML_SINGLE) || mkdir $(HTML_SINGLE)
-	@for dir in $(SUBDIRS); do\
+	test -d $(HTML_SINGLE) || mkdir $(HTML_SINGLE)
+	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;\
@@ -44,21 +44,21 @@
 
 .PHONY: clean-html-chunked
 clean-html-chunked:
-	@-rm -rf $(HTML_CHUNKED)
+	-rm -rf $(HTML_CHUNKED)
 
 .PHONY: clean-html-single
 clean-html-single:
-	@-rm -rf $(HTML_SINGLE)
+	-rm -rf $(HTML_SINGLE)
 
 .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
-	@-rm -f html-chunk.xsl html-single.xsl xsltproc.sh xmllint.sh
+	-rm -f html-chunk.xsl html-single.xsl xsltproc.sh xmllint.sh
 
 xsltproc.sh xmllint.sh:
-	@sh configure
+	sh configure
 
 clean: clean-html-chunked clean-html-single