From 2637499c5d915f383e2dc186a71b7e9a489ee36e Mon Sep 17 00:00:00 2001 From: Danny Willems Date: Mon, 23 Dec 2024 19:13:26 +0100 Subject: [PATCH] Makefile: clean MIPS bin dir when clean called --- Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 41a35df28a..43f57c5021 100644 --- a/Makefile +++ b/Makefile @@ -54,8 +54,9 @@ install-test-deps: ## Install test dependencies clean: ## Clean the project - cargo clean - rm -rf $(O1VM_RISCV32IM_BIN_FILES) + @cargo clean + @rm -rf $(O1VM_RISCV32IM_BIN_FILES) + @rm -rf $(O1VM_MIPS_BIN_DIR) build: ## Build the project