Skip to content

Commit

Permalink
fixed missing .exe on windows/386 binary
Browse files Browse the repository at this point in the history
  • Loading branch information
davecheney committed Oct 1, 2016
1 parent c683857 commit 68487ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ TARGETS = linux-386 linux-amd64 linux-arm linux-arm64 darwin-amd64 windows-386 w
COMMAND_NAME = httpstat
PACKAGE_NAME = github.com/davecheney/$(COMMAND_NAME)
LDFLAGS = -ldflags=-X=main.version=$(VERSION)
OBJECTS = $(patsubst $(COMMAND_NAME)-windows-amd64%,$(COMMAND_NAME)-windows-amd64%.exe, $(patsubst $(COMMAND_NAME)-windows-386,$(COMMAND_NAME)-windows-386.exe, $(patsubst %,$(COMMAND_NAME)-%-v$(VERSION), $(TARGETS))))
OBJECTS = $(patsubst $(COMMAND_NAME)-windows-amd64%,$(COMMAND_NAME)-windows-amd64%.exe, $(patsubst $(COMMAND_NAME)-windows-386%,$(COMMAND_NAME)-windows-386%.exe, $(patsubst %,$(COMMAND_NAME)-%-v$(VERSION), $(TARGETS))))

release: check-env $(OBJECTS) ## Build release binaries (requires VERSION)

Expand Down

0 comments on commit 68487ee

Please sign in to comment.