summaryrefslogtreecommitdiffstats
path: root/DOCS/xml/Makefile
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2004-01-24 22:31:11 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2004-01-24 22:31:11 +0000
commitb8c1540227d1da97afdb6f310376066b72a0d4e4 (patch)
tree4d2ed42d75aaf26e29a8cd501b6ea1348db96b6e /DOCS/xml/Makefile
parentceed673d157d91e3c09d89771e3cf8aae992ceba (diff)
downloadmpv-b8c1540227d1da97afdb6f310376066b72a0d4e4.tar.bz2
mpv-b8c1540227d1da97afdb6f310376066b72a0d4e4.tar.xz
Make the build system print everything it does.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@11842 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'DOCS/xml/Makefile')
-rw-r--r--DOCS/xml/Makefile18
1 files changed, 9 insertions, 9 deletions
diff --git a/DOCS/xml/Makefile b/DOCS/xml/Makefile
index 9a6e730deb..d925a34990 100644
--- a/DOCS/xml/Makefile
+++ b/DOCS/xml/Makefile
@@ -26,8 +26,8 @@ help:
.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 @@ html-chunked: xsltproc.sh xmllint.sh
.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 @@ html-single: xsltproc.sh xmllint.sh
.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