From 1622ff69b77e7513cb7a5ca4716e68a2d357194a Mon Sep 17 00:00:00 2001 From: Paulo Truta Date: Mon, 14 Jun 2021 10:34:18 +0000 Subject: [PATCH] Added build-cloud to Makefile --- Makefile | 3 +++ README.md | 1 + 2 files changed, 4 insertions(+) diff --git a/Makefile b/Makefile index 53e3cb4..3e187dd 100644 --- a/Makefile +++ b/Makefile @@ -12,6 +12,9 @@ build-all: build-prod: GOOS=linux GOARCH=arm RELEASE=prod make build +build-cloud: + GDOS=linux GOARCH=amd64 RELEASE=cloud make build + build: @echo "Building ${GOOS}-${GOARCH}" GOOS=${GOOS} GOARCH=${GOARCH} go build \ diff --git a/README.md b/README.md index b264102..f510ae1 100644 --- a/README.md +++ b/README.md @@ -90,6 +90,7 @@ sudo apt-get install docker docker-compose Check the following links for more info on [Docker](https://www.docker.com/) and [Docker Compose](https://docs.docker.com/compose/). Aditionally, edgeboxctl needs the following bash commands available wherever it runs: +* `arm-linux-gnueabi-gcc` (`sudo apt-get install gcc-arm*`) * `sh` * `rm` * `systemctl`