Skip to content

Commit

Permalink
Makefile: add windows binaries
Browse files Browse the repository at this point in the history
  • Loading branch information
squat committed May 25, 2018
1 parent 5a5d025 commit 80a336f
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -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
Expand Down Expand Up @@ -115,3 +115,6 @@ vet:
echo "and fix them if necessary before submitting the code for review."; \
exit 1; \
fi

clean:
@rm -rf bin

0 comments on commit 80a336f

Please sign in to comment.