frp/Makefile

23 lines
371 B
Makefile
Raw Permalink Normal View History

2016-01-27 21:24:36 +08:00
export PATH := $(GOPATH)/bin:$(PATH)
2016-04-11 11:58:07 +08:00
export OLDGOPATH := $(GOPATH)
export GOPATH := $(shell pwd):$(GOPATH)
2016-01-27 21:24:36 +08:00
all: build
2016-02-03 18:46:24 +08:00
build: godep fmt frps frpc
2016-01-27 21:24:36 +08:00
godep:
2016-04-11 12:05:24 +08:00
GOPATH=$(OLDGOPATH) go get github.com/tools/godep
2016-01-27 21:24:36 +08:00
2016-02-03 18:46:24 +08:00
fmt:
godep go fmt ./...
2016-02-03 18:46:24 +08:00
2016-01-27 21:24:36 +08:00
frps:
godep go build -o bin/frps ./src/frp/cmd/frps
2016-01-27 21:24:36 +08:00
frpc:
godep go build -o bin/frpc ./src/frp/cmd/frpc
2016-02-03 18:14:16 +08:00
test:
godep go test -v ./...