Skip to content

Commit

Permalink
Added support for building mulitple architectures
Browse files Browse the repository at this point in the history
  • Loading branch information
andersjanmyr committed Apr 6, 2015
1 parent 34b6b0d commit 318ea05
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
goose
tmp/
dist/

5 changes: 5 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@

build:
GOOS=windows GOARCH=386 go build -o dist/goose.exe
GOOS=darwin GOARCH=amd64 go build -o dist/goose-osx
GOOS=linux GOARCH=amd64 go build -o dist/goose-linux

0 comments on commit 318ea05

Please sign in to comment.