Skip to content

Commit

Permalink
Makefile: clean MIPS bin dir when clean called
Browse files Browse the repository at this point in the history
  • Loading branch information
dannywillems committed Dec 23, 2024
1 parent 0f5c2e4 commit 4cf77b5
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 4cf77b5

Please sign in to comment.