From 7a99a4ec321830ad368a8e7e99fa03e8baacd7cd Mon Sep 17 00:00:00 2001 From: 9seconds Date: Mon, 9 Jul 2018 18:51:47 +0300 Subject: [PATCH] Correct list of supported platforms on cross compilation --- .gitignore | 1 + Makefile | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 81ff681..50fa452 100644 --- a/.gitignore +++ b/.gitignore @@ -8,3 +8,4 @@ mtg vendor/ version.go +ccbuilds/ diff --git a/Makefile b/Makefile index fc5f9c9..ea7705f 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ APP_NAME := $(IMAGE_NAME) GOMETALINTER := gometalinter VENDOR_FILES := $(shell find "$(ROOT_DIR)/vendor" 2>/dev/null || echo -n "vendor") -CC_BINARIES := $(shell bash -c "echo -n $(APP_NAME)-{linux,windows,darwin,freebsd,openbsd}-{386,amd64} $(APP_NAME)-linux-{arm,arm64}") +CC_BINARIES := $(shell bash -c "echo -n $(APP_NAME)-{linux,freebsd,openbsd}-{386,amd64} $(APP_NAME)-linux-{arm,arm64}") APP_DEPS := version.go $(VENDOR_FILES) COMMON_BUILD_FLAGS := -ldflags="-s -w"