summaryrefslogtreecommitdiffstats
path: root/DOCS/xml/Makefile
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2004-01-20 23:27:25 +0000
committerdiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2004-01-20 23:27:25 +0000
commit4d671efb4abcc8c1b6669f295f54e1042bd91b98 (patch)
tree06757cfeadc51b3226254f1c2eb0b95c6d8963bf /DOCS/xml/Makefile
parent5d60ddfa20238ec3a10059fd5ff87b972665db45 (diff)
downloadmpv-4d671efb4abcc8c1b6669f295f54e1042bd91b98.tar.bz2
mpv-4d671efb4abcc8c1b6669f295f54e1042bd91b98.tar.xz
Shiny new build system by Torinthiel, polished and improved by myself.
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@11818 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'DOCS/xml/Makefile')
-rw-r--r--DOCS/xml/Makefile12
1 files changed, 6 insertions, 6 deletions
diff --git a/DOCS/xml/Makefile b/DOCS/xml/Makefile
index 2c802a9b01..74230e2ef1 100644
--- a/DOCS/xml/Makefile
+++ b/DOCS/xml/Makefile
@@ -26,7 +26,7 @@ help:
.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 @@ build-html-chunked: xsltproc.sh xmllint.sh
.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 @@ build-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
@@ -56,9 +56,9 @@ distclean: clean-html-chunked clean-html-single
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