From f7823b9e20ef01213c52f62f85c033d73f9c02e3 Mon Sep 17 00:00:00 2001 From: Paulo Truta Date: Mon, 17 Apr 2023 20:28:06 +0200 Subject: [PATCH] Added make build- commands --- Makefile | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/Makefile b/Makefile index c09a58b..8b0bc74 100644 --- a/Makefile +++ b/Makefile @@ -15,6 +15,15 @@ build-prod: build-cloud: GOOS=linux GOARCH=amd64 RELEASE=cloud make build +build-arm64: + GOOS=linux GOARCH=arm64 RELEASE=prod make build + +build-armhf: + GOOS=linux GOARCH=arm RELEASE=prod make build + +build-amd64: + GOOS=linux GOARCH=amd64 RELEASE=prod make build + build: @echo "Building ${GOOS}-${GOARCH}" GOOS=${GOOS} GOARCH=${GOARCH} go build \