diff options
-rw-r--r-- | Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
@@ -5,7 +5,11 @@ DESTDIR="" # leave empty for the current system or provide a fakeroot here PREFIX="/usr" -.PHONY: install +.PHONY: clean install + + +clean: + find . -type d -iname '__pycache__' -exec rm -rf {} +; install: |