diff options
author | diego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2003-10-21 11:07:02 +0000 |
---|---|---|
committer | diego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2> | 2003-10-21 11:07:02 +0000 |
commit | 97fad3725b1024d35b720f4e0aba876071dbc002 (patch) | |
tree | c8df4b4d76d2ae6652621deb131a865a7c9a706f /DOCS/xml/Makefile | |
parent | 1f5e696e26edbf69327b6e405c76c07a2e32cbb5 (diff) |
html.xsl ---> html-single.xsl + more consistency + small fixes
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@11207 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'DOCS/xml/Makefile')
-rw-r--r-- | DOCS/xml/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/DOCS/xml/Makefile b/DOCS/xml/Makefile index 0a31c36f8f..9ed90c4080 100644 --- a/DOCS/xml/Makefile +++ b/DOCS/xml/Makefile @@ -21,6 +21,7 @@ help: @echo "build-html-chunked: Build HTML documentation (multiple files)." @echo "clean-html-single : Purge the 'HTML-single' directory." @echo "clean-html-chunked: Purge the 'HTML' directory." + @echo "clean : Purge the 'HTML' and 'HTML-single' directories." @echo "distclean : Remove ALL generated files." .PHONY: build-html-chunked @@ -38,7 +39,7 @@ build-html-single: xsltproc.sh 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; then :; else exit 1; fi;\ + if $(MAKE) HTMLFILE=../$(HTML_SINGLE)/$$dir/MPlayer.html -C $$dir html-single; then :; else exit 1; fi;\ done .PHONY: clean-html-chunked @@ -55,7 +56,7 @@ 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.xsl html-chunk.xsl xsltproc.sh xmllint.sh + -rm -f html-chunk.xsl html-single.xsl xsltproc.sh xmllint.sh xsltproc.sh: configure ./configure |