frp/Makefile

22 lines
398 B
Makefile
Raw Normal View History

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