# HG changeset patch # User diego # Date 1231113715 0 # Node ID e8a6bde9ef9e47700454ed7862d09e8049402743 # Parent e472851cff197208be6a1a8f756b044bb2ac7b15 cosmetics: Move clean targets to the bottom. diff -r e472851cff19 -r e8a6bde9ef9e DOCS/xml/Makefile --- a/DOCS/xml/Makefile Sun Jan 04 23:50:44 2009 +0000 +++ b/DOCS/xml/Makefile Mon Jan 05 00:01:55 2009 +0000 @@ -35,14 +35,6 @@ $(HTML_CHUNKED) $(HTML_SINGLE): -mkdir -p $@ -clean: - rm -rf $(HTML_CHUNKED) $(HTML_SINGLE) - -releaseclean: $(addprefix releaseclean-,$(DOC_LANG_ALL)) - -rm -f html-chunk.xsl html-single.xsl xsltproc.sh xmllint.sh - -distclean: clean releaseclean - xsltproc.sh xmllint.sh: sh configure @@ -64,4 +56,12 @@ $(foreach lang, $(DOC_LANG_ALL),$(eval $(call lang-def,$(lang)))) +clean: + rm -rf $(HTML_CHUNKED) $(HTML_SINGLE) + +releaseclean: $(addprefix releaseclean-,$(DOC_LANG_ALL)) + -rm -f html-chunk.xsl html-single.xsl xsltproc.sh xmllint.sh + +distclean: clean releaseclean + .PHONY: all help html-chunked* html-single* xmllint* *clean*