changeset 31517:2945ef80a0ad

Remove help target that prints available targets. The Makefile should now be simple enough to understand without it.
author diego
date Mon, 28 Jun 2010 16:45:47 +0000
parents a80ae9c48a0f
children 883760a42799
files DOCS/xml/Makefile
diffstat 1 files changed, 2 insertions(+), 16 deletions(-) [+]
line wrap: on
line diff
--- a/DOCS/xml/Makefile	Mon Jun 28 16:31:11 2010 +0000
+++ b/DOCS/xml/Makefile	Mon Jun 28 16:45:47 2010 +0000
@@ -11,21 +11,6 @@
 
 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 @@
 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