summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile1
-rw-r--r--src/Makefile6
2 files changed, 6 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 6c85d5f..f9ad2a9 100644
--- a/Makefile
+++ b/Makefile
@@ -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: