diff --git a/Makefile b/Makefile index a66710f50..2ea649bbd 100644 --- a/Makefile +++ b/Makefile @@ -13,3 +13,10 @@ dist/spacy.pex : pex dist/*.whl -e spacy -o dist/spacy-$(sha).pex cp dist/spacy-$(sha).pex dist/spacy.pex chmod a+rx dist/spacy.pex + +.PHONY : clean + +clean : setup.py + source env3.6/bin/activate + rm -rf dist/* + python setup.py clean --all