From: Vivien Maisonneuve Date: Wed, 25 Jun 2014 16:14:45 +0000 (+0200) Subject: Improve make clean X-Git-Tag: 1.0~200 X-Git-Url: https://scm.cri.ensmp.fr/git/linpy.git/commitdiff_plain/9abd4c9f6c5c21360758489863de42c9b60756a4 Improve make clean --- diff --git a/Makefile b/Makefile index 687d36b..e38f79b 100644 --- a/Makefile +++ b/Makefile @@ -25,5 +25,5 @@ test: build .PHONY: clean clean: - $(RM) build dist MANIFEST venv $(NAME).egg-info - $(RM) $(NAME)/_islhelper.*.so $(NAME)/__pycache__ $(NAME)/tests/__pycache__ + $(RM) build dist MANIFEST venv $(NAME).egg-info $(NAME)/_islhelper.*.so + find . -name __pycache__ | xargs $(RM)