summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrsiddharth <rsd@gnu.org>2016-05-12 00:05:42 +0000
committerrsiddharth <rsd@gnu.org>2016-05-12 00:05:42 +0000
commit48abf9a67c50f490c55f09835e242567150d1340 (patch)
treec9a687ae4808e22221e5c42c15b89ef6c4f36845
parentcc9f564bc3c99e05e8b6293c9247a6808bc353b0 (diff)
Makefile: new target `docs`.
-rw-r--r--Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 9def6c9..badf875 100644
--- a/Makefile
+++ b/Makefile
@@ -30,6 +30,9 @@ upload:
@twine upload -r pypi -s -i rsd@gnu.org dist/*.tar.gz
@twine upload -r pypi -s -i rsd@gnu.org dist/*.whl
+docs:
+ @$(MAKE) -C docs html
+
clean-build:
@rm -rf build/
@rm -rf dist/
@@ -51,4 +54,4 @@ dev-packages:
@pip install -U Sphinx
.PHONY: dist clean-build upload build-dist egg clean-pyc clean-venv
-.PHONY: dev-packages
+.PHONY: dev-packages docs