frp/Makefile

22 lines
398 B
Makefile
Raw Normal View History

2016-01-27 13:24:36 +00:00
export PATH := $(GOPATH)/bin:$(PATH)
export NEW_GOPATH := $(shell pwd)
2016-01-27 13:24:36 +00:00
all: build
2016-02-03 10:46:24 +00:00
build: godep fmt frps frpc
2016-01-27 13:24:36 +00:00
godep:
@go get github.com/tools/godep
2016-02-03 10:46:24 +00:00
fmt:
2016-03-13 16:21:40 +00:00
GOPATH=$(NEW_GOPATH) godep go fmt ./...
2016-02-03 10:46:24 +00:00
2016-01-27 13:24:36 +00:00
frps:
GOPATH=$(NEW_GOPATH) godep go build -o bin/frps ./src/frp/cmd/frps
2016-01-27 13:24:36 +00:00
frpc:
GOPATH=$(NEW_GOPATH) godep go build -o bin/frpc ./src/frp/cmd/frpc
2016-02-03 10:14:16 +00:00
test:
@GOPATH=$(NEW_GOPATH) godep go test ./...