From cc14d0e44526b915fb23ab69721eb8aead02661c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sa=C3=BAl=20Cabrera?= Date: Tue, 27 Aug 2024 11:22:34 -0400 Subject: [PATCH] Remove clean target from `Makefile` (#738) This commit removes the `clean` target from the `Makefile`: * We no longer have to deal with downloading `wasi-sdk` * Given (1), we can simply call `cargo clean` if we want to clean cargo artifacts. --- Makefile | 5 ----- 1 file changed, 5 deletions(-) diff --git a/Makefile b/Makefile index dbea23f8..6d12916c 100644 --- a/Makefile +++ b/Makefile @@ -64,8 +64,3 @@ fmt-core: fmt-cli: cargo fmt --package=javy-cli -- --check CARGO_PROFILE_RELEASE_LTO=off cargo clippy --package=javy-cli --release --all-targets -- -D warnings - -clean: clean-wasi-sdk clean-cargo - -clean-cargo: - cargo clean