From 79dfe7eedadc3e644b5428fa3c32d19cae682204 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jon=20H=C3=A4ggblad?= Date: Thu, 20 Apr 2023 14:13:20 +0200 Subject: [PATCH] Add clippy target in top-level Makefile --- Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index ce8a566ea2..4a26cdf478 100644 --- a/Makefile +++ b/Makefile @@ -13,6 +13,10 @@ happy: fmt clippy-happy test # on all workspaces. build-release: build-release-main wasm +# Deprecated +# For backwards compatibility +clippy-all: clippy + # ----------------------------------------------------------------------------- # Define targets for a given workspace # $(1): name @@ -52,7 +56,7 @@ fmt-$(1): cargo fmt --manifest-path $(2)/Cargo.toml --all clippy-happy: clippy-happy-$(1) -clippy-all: clippy-$(1) clippy-examples-$(1) +clippy: clippy-$(1) clippy-examples-$(1) check: check-$(1) cargo-test: test-$(1) cargo-test-expensive: test-expensive-$(1)