Start getting docs updated
[osm/N2VC.git] / Makefile
index eee4757..04bc522 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,4 +1,6 @@
-PY := .tox/py35/bin/python3.5
+BIN := .tox/py35/bin
+PY := $(BIN)/python3.5
+PIP := $(BIN)/pip
 
 clean:
        find . -name __pycache__ -type d -exec rm -r {} +
@@ -14,4 +16,10 @@ client:
 test:
        tox
 
-.phony: clean client test
+docs: .tox
+       $(PIP) list | grep Sphinx || $(PIP) install -U sphinx
+       rm -rf docs/api/*
+       $(BIN)/sphinx-apidoc -o docs/api/ juju/
+       $(BIN)/sphinx-build -b html docs/  docs/_build/
+
+.PHONY: clean client test docs