X-Git-Url: https://osm.etsi.org/gitweb/?a=blobdiff_plain;f=Makefile;h=eee47577ae34509e838b098751194a46f9ea6b50;hb=bea85caae65ac8d28b87feec5c7a1b6d5dbce070;hp=64e6ba5e46b950ecc19a06b644b44a6a161fa221;hpb=edf3beda420d3a2c66d6ef8fe9b5e45a76d052b9;p=osm%2FN2VC.git diff --git a/Makefile b/Makefile index 64e6ba5..eee4757 100644 --- 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