Skip to content

Commit

Permalink
Bump version and add Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
buger committed Mar 16, 2014
1 parent 9fa5ef7 commit 1784516
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 1 deletion.
16 changes: 16 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
all: build-macosx build-x86 build-x64

build-x64:
GOOS=linux GOARCH=amd64 CGO_ENABLED=0 go build
tar -czf gor_x64.tar.gz gor
rm gor

build-x86:
GOOS=linux GOARCH=386 CGO_ENABLED=0 go build
tar -czf gor_x86.tar.gz gor
rm gor

build-macosx:
GOOS=darwin GOARCH=amd64 CGO_ENABLED=0 go build
tar -czf gor_macosx.tar.gz gor
rm gor
2 changes: 1 addition & 1 deletion settings.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ import (
)

const (
VERSION = "0.7.5"
VERSION = "0.8"
)

type AppSettings struct {
Expand Down

0 comments on commit 1784516

Please sign in to comment.