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