Skip to content

Commit

Permalink
Add `make dist'
Browse files Browse the repository at this point in the history
  • Loading branch information
VojtechVitek committed Dec 9, 2016
1 parent d6e8fe0 commit 0498aed
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
dist:
@mkdir -p ./bin
@rm -f ./bin/*
GOOS=darwin GOARCH=amd64 go build -o ./bin/goose-darwin64 ./cmd/goose
GOOS=linux GOARCH=amd64 go build -o ./bin/goose-linux64 ./cmd/goose
GOOS=linux GOARCH=386 go build -o ./bin/goose-linux386 ./cmd/goose

0 comments on commit 0498aed

Please sign in to comment.