mirror of
https://github.com/fatedier/frp.git
synced 2024-11-24 02:59:19 +08:00
13 lines
251 B
Makefile
13 lines
251 B
Makefile
export PATH := $(GOPATH)/bin:$(PATH)
|
|
export GO15VENDOREXPERIMENT := 1
|
|
|
|
all: build
|
|
|
|
build: gox app
|
|
|
|
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/...
|