Add agent and workload status properties to Unit
[osm/N2VC.git] / Makefile
index 64e6ba5..eee4757 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,12 +1,17 @@
 PY := .tox/py35/bin/python3.5
 
+clean:
+       find . -name __pycache__ -type d -exec rm -r {} +
+       find . -name *.pyc -delete
+       rm -rf .tox
+
 .tox:
        tox -r --notest
 
-.phony: client
 client:
        $(PY) -m juju.client.facade -s juju/client/schemas.json -o juju/client/_client.py
 
-.phony: test
 test:
        tox
+
+.phony: clean client test