From 9abd4c9f6c5c21360758489863de42c9b60756a4 Mon Sep 17 00:00:00 2001 From: Vivien Maisonneuve Date: Wed, 25 Jun 2014 18:14:45 +0200 Subject: [PATCH] Improve make clean --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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) -- 2.20.1