cosmetics: Move clean targets to the bottom.

git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28255 b3059339-0415-0410-9bf9-f77b7e298cf2
This commit is contained in:
diego 2009-01-05 00:01:55 +00:00
parent c204a4cd82
commit 61aa41b303
1 changed files with 8 additions and 8 deletions

View File

@ -35,14 +35,6 @@ xmllint: xmllint.sh $(addprefix xmllint-,$(DOC_LANG_ALL))
$(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 @@ endef
$(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*