From c5a4ce6aac94c2f7a5e9a8487671dda1b948cf9f Mon Sep 17 00:00:00 2001 From: CareyWong Date: Mon, 28 Sep 2020 21:21:56 +0800 Subject: [PATCH] Update: Makefile --- Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 27e4f21..e81d90a 100644 --- a/Makefile +++ b/Makefile @@ -19,6 +19,8 @@ all: @CGO_ENABLED=0 GOOS=darwin GOARCH=amd64 go build -o ${BINARY_DARWIN} ${GOFILES} @echo ${BINARY_WINDOWS} @CGO_ENABLED=0 GOOS=windows GOARCH=amd64 go build -o ${BINARY_WINDOWS} ${GOFILES} + @echo ${BINARY_ARRCH64} + @CGO_ENABLED=0 GOOS=linux GOARCH=aarch64 go build -o ${BINARY_ARRCH64} ${GOFILES} linux: @echo ${BINARY_LINUX} @@ -34,7 +36,7 @@ windows: aarch64: @echo ${BINARY_ARRCH64} - @CGO_ENABLED=0 GOOS=windows GOARCH=aarch64 go build -o ${BINARY_ARRCH64} ${GOFILES} + @CGO_ENABLED=0 GOOS=linux GOARCH=aarch64 go build -o ${BINARY_ARRCH64} ${GOFILES} install: @go mod tidy