diff options
author | W. Trevor King <wking@drexel.edu> | 2010-09-28 21:29:34 -0400 |
---|---|---|
committer | W. Trevor King <wking@drexel.edu> | 2010-09-28 21:29:34 -0400 |
commit | e3ec1f6f6d0f8ad5bc3777aa49f96d43aa9ffacc (patch) | |
tree | d05dbd1f2c628eacbb34a234ba853257d1d7f02e /doc/Makefile | |
parent | 8c9f876ae69f7bf92686edea320931d875b5c681 (diff) | |
download | bugseverywhere-e3ec1f6f6d0f8ad5bc3777aa49f96d43aa9ffacc.tar.gz |
Wrap `rm` in the RM variable in doc/Makefile.
This is more consistent with the example set by the root Makefile.
Diffstat (limited to 'doc/Makefile')
-rw-r--r-- | doc/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
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 |