2016-04-11 09:27:14 +00:00
|
|
|
export PATH := $(GOPATH)/bin:$(PATH)
|
2016-08-11 09:03:19 +00:00
|
|
|
export GO15VENDOREXPERIMENT := 1
|
2016-04-11 09:27:14 +00:00
|
|
|
|
|
|
|
all: build
|
|
|
|
|
2016-06-07 14:17:37 +00:00
|
|
|
build: gox app
|
2016-04-11 09:27:14 +00:00
|
|
|
|
2016-06-07 14:17:37 +00:00
|
|
|
gox:
|
2016-08-11 09:03:19 +00:00
|
|
|
go get github.com/mitchellh/gox
|
2016-04-11 09:27:14 +00:00
|
|
|
|
|
|
|
app:
|
2016-06-03 09:51:45 +00:00
|
|
|
gox -osarch "darwin/386 darwin/amd64 linux/386 linux/amd64 linux/arm windows/386 windows/amd64" ./src/...
|