aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTeddy Wing2021-03-07 16:01:12 +0100
committerTeddy Wing2021-03-07 16:01:12 +0100
commit60f881910ff9f19f73283ae2e1c01b8dd851bfe4 (patch)
treef0fd94df5a45fbe159244a20b41f438b184fe47d
parent6f7678106abc7deccc5f7d01c40b000a19e31aeb (diff)
downloadRe-Good-Catalina-Invert-Colours-60f881910ff9f19f73283ae2e1c01b8dd851bfe4.tar.bz2
Makefile: Add a `clean` target
Give us a way to remove all build files.
-rw-r--r--Makefile7
1 files changed, 7 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 6624a72..521a21f 100644
--- a/Makefile
+++ b/Makefile
@@ -48,3 +48,10 @@ $(BUILD_DIR):
$(LOCAL_INCLUDE_DIR): | $(BUILD_DIR)
mkdir -p $@
+
+
+.PHONY: clean
+clean:
+ rm -rf $(RELEASE_PRODUCT) \
+ $(BUILD_DIR) \
+ $(DDHOTKEY_OBJ)