2016-04-11 17:27:14 +08:00
|
|
|
export PATH := $(GOPATH)/bin:$(PATH)
|
2016-08-11 17:03:19 +08:00
|
|
|
export GO15VENDOREXPERIMENT := 1
|
2016-04-11 17:27:14 +08:00
|
|
|
|
|
|
|
all: build
|
|
|
|
|
2016-08-21 00:07:25 +08:00
|
|
|
build: gox app more
|
2016-04-11 17:27:14 +08:00
|
|
|
|
2016-06-07 22:17:37 +08:00
|
|
|
gox:
|
2016-08-11 17:03:19 +08:00
|
|
|
go get github.com/mitchellh/gox
|
2016-04-11 17:27:14 +08:00
|
|
|
|
|
|
|
app:
|
2016-06-03 17:51:45 +08:00
|
|
|
gox -osarch "darwin/386 darwin/amd64 linux/386 linux/amd64 linux/arm windows/386 windows/amd64" ./src/...
|
2016-08-21 00:07:25 +08:00
|
|
|
|
|
|
|
more:
|
|
|
|
env GOOS=linux GOARCH=mips64 go build -o ./frpc_linux_mips64 ./src/cmd/frpc
|
|
|
|
env GOOS=linux GOARCH=mips64 go build -o ./frps_linux_mips64 ./src/cmd/frps
|
|
|
|
env GOOS=linux GOARCH=mips64le go build -o ./frpc_linux_mips64le ./src/cmd/frpc
|
|
|
|
env GOOS=linux GOARCH=mips64le go build -o ./frps_linux_mips64le ./src/cmd/frps
|