From 80a336f4ef9da72c3b369ce7dea9bb280cae4219 Mon Sep 17 00:00:00 2001 From: Lucas Serven Date: Fri, 25 May 2018 11:29:27 +0200 Subject: [PATCH] Makefile: add windows binaries --- Makefile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 0364ac99..3a00ada0 100644 --- a/Makefile +++ b/Makefile @@ -1,8 +1,8 @@ -.PHONY: all-release build fmt fmt-go fmt-terraform lint lint-go lint-terraform release test vendor vendor-status vet +.PHONY: all-release build clean fmt fmt-go fmt-terraform lint lint-go lint-terraform release test vendor vendor-status vet ARCH ?= amd64 PLATFORM ?= linux -ALL_PLATFORMS := darwin linux +ALL_PLATFORMS := darwin linux windows BIN := terraform-provider-vultr PKG := github.com/squat/$(BIN) BUILD_IMAGE ?= golang:1.10.0-alpine @@ -115,3 +115,6 @@ vet: echo "and fix them if necessary before submitting the code for review."; \ exit 1; \ fi + +clean: + @rm -rf bin