Regen schema to pick up missing APIs
[osm/N2VC.git] / Makefile
index ed9c3aa..ec716ec 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,6 +1,7 @@
 BIN := .tox/py35/bin
 PY := $(BIN)/python3.5
 PIP := $(BIN)/pip
+SCHEMAGEN := $(shell which schemagen)
 
 clean:
        find . -name __pycache__ -type d -exec rm -r {} +
@@ -11,6 +12,10 @@ clean:
        tox -r --notest
 
 client:
+ifndef SCHEMAGEN
+       $(error "schemagen is not available, please install from https://github.com/juju/schemagen")
+endif
+       schemagen > juju/client/schemas.json
        $(PY) -m juju.client.facade -s juju/client/schemas.json -o juju/client/_client.py
 
 test: