summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrsiddharth <rsd@gnu.org>2016-05-26 19:26:33 +0000
committerrsiddharth <rsd@gnu.org>2016-05-26 19:26:33 +0000
commit08e3b283337104a65f86c6c271298856631f8716 (patch)
tree7cbba91ad7b9a3f265c6938dfc1eb4a9f45462f5
parentfc547c45840d2d7a155103f4399414f6d86b9f4c (diff)
Makefile: add `clean-target` target.
-rw-r--r--Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 73caa49..5a52b60 100644
--- a/Makefile
+++ b/Makefile
@@ -51,10 +51,13 @@ clean-venv:
@rm -rf local/
@rm -rf man/
+clean-docs:
+ @$(MAKE) -C docs clean
+
dev-packages:
@pip install -U nose mock restructuredtext_lint
@pip install -U wheel twine
@pip install -U Sphinx
.PHONY: dist clean-build upload build-dist egg clean-pyc clean-venv
-.PHONY: dev-packages docs upload-docs
+.PHONY: dev-packages docs upload-docs clean-docs