diff options
-rw-r--r-- | Makefile | 1 | ||||
-rw-r--r-- | src/Makefile | 6 |
2 files changed, 6 insertions, 1 deletions
@@ -10,6 +10,7 @@ PREFIX="/usr" clean: find . -type d -iname '__pycache__' -exec rm -rf {} +; + make -C src clean install: diff --git a/src/Makefile b/src/Makefile index a720671..6797f80 100644 --- a/src/Makefile +++ b/src/Makefile @@ -4,7 +4,11 @@ DESTDIR="" # leave empty for the current system or provide a fakeroot here -.PHONY: install +.PHONY: clean install + + +clean: + rm -rf build install: |