You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
export PATH := $(GOPATH)/bin:$(PATH)
|
|
|
|
export GO15VENDOREXPERIMENT := 1
|
|
|
|
|
|
|
|
all: build
|
|
|
|
|
|
|
|
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
|