diff --git a/Makefile b/Makefile index d246008..0cbb47c 100644 --- a/Makefile +++ b/Makefile @@ -115,9 +115,17 @@ ipynbcheckpoints-remove: pytestcache-remove: find . | grep -E ".pytest_cache" | xargs rm -rf +.PHONY: pkl-remove +pytestcache-remove: + find . | grep -E ".pkl" | xargs rm -rf + +.PHONY: log-remove +pytestcache-remove: + find . | grep -E ".log" | xargs rm -rf + .PHONY: build-remove build-remove: rm -rf build/ .PHONY: cleanup -cleanup: pycache-remove dsstore-remove mypycache-remove ipynbcheckpoints-remove pytestcache-remove +cleanup: pycache-remove dsstore-remove mypycache-remove ipynbcheckpoints-remove pytestcache-remove pkl-remove log-remove