comparison DOCS/xml/Makefile @ 29991:79720cbec672

Ignore errors from failing rm commands in clean targets. This is also the policy we have in the top-level Makefile.
author diego
date Mon, 14 Dec 2009 03:19:01 +0000
parents af94a2bdc185
children e709ce5b5d34
comparison
equal deleted inserted replaced
29990:af94a2bdc185 29991:79720cbec672
50 endef 50 endef
51 51
52 $(foreach lang, $(DOC_LANG_ALL),$(eval $(call lang-def,$(lang)))) 52 $(foreach lang, $(DOC_LANG_ALL),$(eval $(call lang-def,$(lang))))
53 53
54 clean: 54 clean:
55 rm -rf $(HTML) 55 -rm -rf $(HTML)
56 56
57 releaseclean: 57 releaseclean:
58 rm -f $(CONFIGURE_GENERATED) 58 -rm -f $(CONFIGURE_GENERATED)
59 rm -f $(MAIN_XML_ALL) 59 -rm -f $(MAIN_XML_ALL)
60 rm -f $$(find . -name *.xml -type l) 60 -rm -f $$(find . -name *.xml -type l)
61 61
62 distclean: clean releaseclean 62 distclean: clean releaseclean
63 63
64 .PHONY: all help html-chunked html-single xmllint 64 .PHONY: all help html-chunked html-single xmllint
65 .PHONY: html-chunked-* html-single-* xmllint-* *clean* 65 .PHONY: html-chunked-* html-single-* xmllint-* *clean*