build: for cross-compiles

This commit is contained in:
fatedier
2016-04-11 17:27:14 +08:00
parent fdd7436736
commit 6874688e07
3 changed files with 61 additions and 0 deletions

15
Makefile.cross-compiles Normal file
View File

@@ -0,0 +1,15 @@
export PATH := $(GOPATH)/bin:$(PATH)
export OLDGOPATH := $(GOPATH)
export GOPATH := $(shell pwd)/Godeps/_workspace:$(shell pwd):$(GOPATH)
export OS_TARGETS=linux windows
export ARCH_TARGETS=386 amd64
all: build
build: godep app
godep:
GOPATH=$(OLDGOPATH) go get github.com/mitchellh/gox
app:
gox -os "$(OS_TARGETS)" -arch="$(ARCH_TARGETS)" ./...