From: W. Trevor King Date: Wed, 29 Sep 2010 01:29:34 +0000 (-0400) Subject: Wrap `rm` in the RM variable in doc/Makefile. X-Git-Tag: 1.0.0~5^2~3 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;ds=sidebyside;h=e3ec1f6f6d0f8ad5bc3777aa49f96d43aa9ffacc;p=be.git Wrap `rm` in the RM variable in doc/Makefile. This is more consistent with the example set by the root Makefile. --- diff --git a/doc/Makefile b/doc/Makefile index 6d7bbc5..71698a8 100644 --- a/doc/Makefile +++ b/doc/Makefile @@ -1,5 +1,6 @@ # Makefile for Sphinx documentation # +RM = /bin/rm # You can set these variables from the command line. SPHINXOPTS = @@ -29,7 +30,7 @@ help: @echo " libbe to autogenerate files for all libbe modules" clean: - -rm -rf $(BUILDDIR) libbe + $(RM) -rf $(BUILDDIR) libbe html: libbe $(SPHINXBUILD) -b html $(ALLSPHINXOPTS) $(BUILDDIR)/html