frp/Makefile

22 lines
398 B
Makefile
Raw Normal View History

2016-01-27 21:24:36 +08:00
export PATH := $(GOPATH)/bin:$(PATH)
export NEW_GOPATH := $(shell pwd)
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:
@go get github.com/tools/godep
2016-02-03 18:46:24 +08:00
fmt:
2016-03-14 00:21:40 +08:00
GOPATH=$(NEW_GOPATH) godep go fmt ./...
2016-02-03 18:46:24 +08:00
2016-01-27 21:24:36 +08:00
frps:
GOPATH=$(NEW_GOPATH) godep go build -o bin/frps ./src/frp/cmd/frps
2016-01-27 21:24:36 +08:00
frpc:
GOPATH=$(NEW_GOPATH) godep go build -o bin/frpc ./src/frp/cmd/frpc
2016-02-03 18:14:16 +08:00
test:
@GOPATH=$(NEW_GOPATH) godep go test ./...