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
This commit is contained in:
diego 2010-06-28 16:45:47 +00:00 committed by Uoti Urpala
parent a1b8092c87
commit 8ec2a3ae72
1 changed files with 2 additions and 16 deletions

View File

@ -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