Skip to content

Commit 80a336f

Browse files
committed
Makefile: add windows binaries
1 parent 5a5d025 commit 80a336f

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

Makefile

+5-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
1-
.PHONY: all-release build fmt fmt-go fmt-terraform lint lint-go lint-terraform release test vendor vendor-status vet
1+
.PHONY: all-release build clean fmt fmt-go fmt-terraform lint lint-go lint-terraform release test vendor vendor-status vet
22

33
ARCH ?= amd64
44
PLATFORM ?= linux
5-
ALL_PLATFORMS := darwin linux
5+
ALL_PLATFORMS := darwin linux windows
66
BIN := terraform-provider-vultr
77
PKG := github.com/squat/$(BIN)
88
BUILD_IMAGE ?= golang:1.10.0-alpine
@@ -115,3 +115,6 @@ vet:
115115
echo "and fix them if necessary before submitting the code for review."; \
116116
exit 1; \
117117
fi
118+
119+
clean:
120+
@rm -rf bin

0 commit comments

Comments
 (0)