From dd4a092214cafc2a0433a83bf9dceed269c0f572 Mon Sep 17 00:00:00 2001 From: innerspacepilot <42217618+innerspacepilot@users.noreply.github.com> Date: Sat, 29 Jun 2019 19:46:37 +0300 Subject: [PATCH] Enable win32 build (#79) --- Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Makefile b/Makefile index 7d844d3..1a87f84 100644 --- a/Makefile +++ b/Makefile @@ -44,6 +44,9 @@ browserpass-freebsd64: *.go **/*.go browserpass-windows64: *.go **/*.go env GOOS=windows GOARCH=amd64 go build -ldflags $(GO_LDFLAGS) -gcflags $(GO_GCFLAGS) -asmflags $(GO_ASMFLAGS) -o $@.exe +browserpass-windows: *.go **/*.go + env GOOS=windows GOARCH=386 go build -ldflags $(GO_LDFLAGS) -gcflags $(GO_GCFLAGS) -asmflags $(GO_ASMFLAGS) -o $@.exe + .PHONY: test test: go test ./...