From e2a0f3800fa57d53d462f99da575e5538ea85cdb Mon Sep 17 00:00:00 2001 From: Ivan Zvonimir Horvat Date: Sat, 15 Oct 2022 16:12:50 +0200 Subject: [PATCH] make: add clean cmd --- Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 7e373099..627813f3 100644 --- a/Makefile +++ b/Makefile @@ -69,4 +69,7 @@ install-timing: cargo install --features=timing --path "." --offline licenses: - cargo bundle-licenses --format toml --output THIRDPARTY.toml \ No newline at end of file + cargo bundle-licenses --format toml --output THIRDPARTY.toml + +clean: + cargo clean \ No newline at end of file