Skip to content

Commit

Permalink
Merge pull request #123 from 99designs/windows-exe-filename
Browse files Browse the repository at this point in the history
Makefile: windows build has .exe file extension.
  • Loading branch information
lox committed Jun 16, 2017
2 parents cdafa2d + 29f3efd commit 8e043c3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ $(BIN)-linux-amd64: $(SRC)
$(BIN)-darwin-amd64: $(SRC)
GOOS=darwin GOARCH=amd64 go build -o $@ -ldflags="$(FLAGS)" .

$(BIN)-windows-386: $(SRC)
$(BIN)-windows-386.exe: $(SRC)
GOOS=windows GOARCH=386 go build -o $@ -ldflags="$(FLAGS)" .

release: $(BIN)-linux-amd64 $(BIN)-darwin-amd64 $(BIN)-windows-386
release: $(BIN)-linux-amd64 $(BIN)-darwin-amd64 $(BIN)-windows-386.exe
codesign -s $(CERT) $(BIN)-darwin-amd64

clean:
Expand Down

0 comments on commit 8e043c3

Please sign in to comment.