From 56c53312f5b686a675f9fa060edcbed4a6396a85 Mon Sep 17 00:00:00 2001 From: Michael Date: Sun, 27 Nov 2022 05:26:57 +0000 Subject: [PATCH] added command to clean target --- Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 11195c5..24148fc 100644 --- a/Makefile +++ b/Makefile @@ -2,4 +2,7 @@ run: cargo run build: - cargo build \ No newline at end of file + cargo build + +clean: + rm -rf target/ \ No newline at end of file