From 8bbae5a6b04d5f2ad9ede83233ecfbdc4d33231e Mon Sep 17 00:00:00 2001 From: John Adler Date: Wed, 14 Jun 2023 10:13:05 -0400 Subject: [PATCH] Remove `check` dependency for `all` from Makefile. Again. (#1024) --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 8c47694ae5..276b3a327c 100644 --- a/Makefile +++ b/Makefile @@ -108,7 +108,7 @@ ifeq (linux/riscv64,$(findstring linux/riscv64,$(TARGETPLATFORM))) GOARCH=riscv64 endif -all: check build test install +all: build test install .PHONY: all include tests.mk