|
|
|
@ -3,10 +3,16 @@ export GO15VENDOREXPERIMENT := 1
|
|
|
|
|
|
|
|
|
|
all: build |
|
|
|
|
|
|
|
|
|
build: gox app |
|
|
|
|
build: gox app more |
|
|
|
|
|
|
|
|
|
gox: |
|
|
|
|
go get github.com/mitchellh/gox
|
|
|
|
|
|
|
|
|
|
app: |
|
|
|
|
gox -osarch "darwin/386 darwin/amd64 linux/386 linux/amd64 linux/arm windows/386 windows/amd64" ./src/...
|
|
|
|
|
|
|
|
|
|
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
|
|
|
|
|