From 9e824085b2be0fa7180eae4aaf703ebadfbc9da1 Mon Sep 17 00:00:00 2001 From: ComixHe Date: Tue, 12 May 2026 11:18:35 +0800 Subject: [PATCH] fix(build): use 'binaries' in 'all' target Signed-off-by: ComixHe --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 86433fa2a..b86c984a4 100644 --- a/Makefile +++ b/Makefile @@ -74,7 +74,7 @@ examples: $(EXAMPLE_TARGETS) $(EXAMPLE_TARGETS): example-%: go build ./examples/$(*) -all: check test build binary +all: check test build binaries check: $(CHECK_TARGETS) # Apply go fmt to the codebase