From 5435b071b94885fc2fc44afb88bf88aa48e3487f Mon Sep 17 00:00:00 2001 From: Matthew Honnibal Date: Sun, 24 Jun 2018 23:39:34 +0200 Subject: [PATCH] Add make clean command --- Makefile | 7 +++++++ 1 file changed, 7 insertions(+) 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