Skip to content

Commit

Permalink
Bump version to 0.7 . Deprecate 32bit darwin builds.
Browse files Browse the repository at this point in the history
  • Loading branch information
spytheman committed Nov 6, 2022
1 parent 717a032 commit 429da56
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,18 +1,15 @@
VERSION=0.6
VERSION=0.7
GOBUILD?=go build -ldflags "-X main.version=$(VERSION)"
.PHONY: clean binaries release

clean:
rm -rf binaries/ release/ gostamp

binaries: binaries/osx_x86_64/gostamp binaries/windows_x86_64/gostamp.exe binaries/linux_x86_64/gostamp binaries/osx_x86_32/gostamp binaries/windows_x86_32/gostamp.exe binaries/linux_x86_32/gostamp
binaries: binaries/osx_x86_64/gostamp binaries/windows_x86_64/gostamp.exe binaries/linux_x86_64/gostamp binaries/windows_x86_32/gostamp.exe binaries/linux_x86_32/gostamp

binaries/osx_x86_64/gostamp:
GOOS=darwin GOARCH=amd64 $(GOBUILD) -o binaries/osx_x86_64/gostamp

binaries/osx_x86_32/gostamp:
GOOS=darwin GOARCH=386 $(GOBUILD) -o binaries/osx_x86_32/gostamp

binaries/windows_x86_64/gostamp.exe:
GOOS=windows GOARCH=amd64 $(GOBUILD) -o binaries/windows_x86_64/gostamp.exe

Expand Down

0 comments on commit 429da56

Please sign in to comment.