summaryrefslogtreecommitdiffstats
path: root/DOCS
diff options
context:
space:
mode:
authordiego <diego@b3059339-0415-0410-9bf9-f77b7e298cf2>2010-06-28 16:45:47 +0000
committerUoti Urpala <uau@glyph.nonexistent.invalid>2010-11-02 04:11:43 +0200
commit8ec2a3ae72b35fc429b1989520f768204dc0d77d (patch)
tree00f256c14446c08822eb87efa48f1fc8f0e3372e /DOCS
parenta1b8092c872977e3289e6cf5232d5b534fbd90b8 (diff)
downloadmpv-8ec2a3ae72b35fc429b1989520f768204dc0d77d.tar.bz2
mpv-8ec2a3ae72b35fc429b1989520f768204dc0d77d.tar.xz
DOCS/xml/Makefile: Remove help target that prints available targets
The Makefile should now be simple enough to understand without it. git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@31583 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'DOCS')
-rw-r--r--DOCS/xml/Makefile18
1 files changed, 2 insertions, 16 deletions
diff --git a/DOCS/xml/Makefile b/DOCS/xml/Makefile
index 6e68d905e8..bf89d1d2ad 100644
--- a/DOCS/xml/Makefile
+++ b/DOCS/xml/Makefile
@@ -11,21 +11,6 @@ CONFIGURE_GENERATED = html-chunk.xsl html-single.xsl xml.mak
all: html-chunked html-single
-help:
- @echo "Targets:"
- @echo "********"
- @echo "all : Build everything for configured languages (default)."
- @echo "html-single : HTML documentation for configured languages (single file)"
- @echo "html-single-LANG : As above, but only one language."
- @echo "html-chunked : HTML documentation for configured languages (multiple files)"
- @echo "html-chunked-LANG : As above, but only one language."
- @echo "xmllint : Check syntax of XML files for configured languages."
- @echo "xmllint-LANG : Check syntax of LANG XML files."
- @echo "clean : Purge the 'HTML' directory."
- @echo "releaseclean : Remove generated files but keep the HTML."
- @echo "distclean : Remove ALL generated files."
- @echo "Substitute LANG for one of $(DOC_LANG_ALL)"
-
html-chunked: $(addprefix html-chunked-,$(DOC_LANGS))
html-single: $(addprefix html-single-,$(DOC_LANGS))
@@ -58,11 +43,12 @@ $(foreach lang, $(DOC_LANG_ALL),$(eval $(lang-def)))
clean:
-rm -rf $(HTML)
+# Remove generated files but keep the HTML (for release tarballs).
releaseclean:
-rm -f $(CONFIGURE_GENERATED)
-rm -f $(MAIN_XML_ALL)
distclean: clean releaseclean
-.PHONY: all help html-chunked html-single xmllint
+.PHONY: all html-chunked html-single xmllint
.PHONY: html-chunked-* html-single-* xmllint-* *clean