Mercurial > mplayer.hg
diff DOCS/xml/Makefile @ 11817:19919e913e3d
Shiny new build system by Torinthiel, polished and improved by myself.
author | diego |
---|---|
date | Tue, 20 Jan 2004 23:27:25 +0000 |
parents | bb3e24e796eb |
children | c219c245aa50 |
line wrap: on
line diff
--- a/DOCS/xml/Makefile Tue Jan 20 19:28:35 2004 +0000 +++ b/DOCS/xml/Makefile Tue Jan 20 23:27:25 2004 +0000 @@ -26,7 +26,7 @@ .PHONY: build-html-chunked build-html-chunked: xsltproc.sh xmllint.sh - test -d $(HTML_CHUNKED) || mkdir $(HTML_CHUNKED) + @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) &&\ @@ -35,7 +35,7 @@ .PHONY: build-html-single build-html-single: xsltproc.sh xmllint.sh - test -d $(HTML_SINGLE) || mkdir $(HTML_SINGLE) + @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) &&\ @@ -44,11 +44,11 @@ .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 @@ -56,9 +56,9 @@ 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