From 631c860879f5f242504b1503174a811c0153553e Mon Sep 17 00:00:00 2001 From: yzb <335357057@qq.com> Date: Sun, 9 Oct 2022 14:31:23 +0800 Subject: [PATCH] makefile: add windows (#2126) Co-authored-by: yzb@example.cn --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 9607153d..c2c7267c 100644 --- a/Makefile +++ b/Makefile @@ -5,7 +5,7 @@ ifeq ($(UNAME_S),Darwin) else ifeq ($(UNAME_S),Linux) GOOS := linux else -$(error "$$GOOS is not defined. If you are using Windows, try to re-make using 'GOOS=windows make ...' ") + GOOS := windows endif endif -- 2.11.0