Add make clean command

This commit is contained in:
Matthew Honnibal 2018-06-24 23:39:34 +02:00
parent 12f09313b1
commit 5435b071b9
1 changed files with 7 additions and 0 deletions

View File

@ -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