Skip to content

Commit 5a3cceb

Browse files
committed
Fix make clean command on osx
1 parent 1e1af47 commit 5a3cceb

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Makefile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,8 @@ publish: install
5858
$(MAKE) clean
5959

6060
clean:
61-
@rm -Rf *.egg .cache .coverage .tox build dist docs/build htmlcov
62-
@find -depth -type d -name __pycache__ -exec rm -Rf {} \;
63-
@find -type f -name '*.pyc' -delete
61+
@rm -Rf *.egg .eggs *.egg-info *.db .cache .coverage .tox build dist docs/build htmlcov doc/_build test/.Python test/pip-selfcheck.json test/lib/ test/include/ test/bin/
62+
@find . -depth -type d -name __pycache__ -exec rm -Rf {} \;
63+
@find . -type f -name '*.pyc' -delete
6464

6565
.PHONY: default install reset check test tox docs publish clean

0 commit comments

Comments
 (0)