2016-01-27 21:24:36 +08:00
|
|
|
export PATH := $(GOPATH)/bin:$(PATH)
|
2016-04-11 11:58:07 +08:00
|
|
|
export OLDGOPATH := $(GOPATH)
|
2016-04-11 11:21:35 +08:00
|
|
|
export GOPATH := $(shell pwd):$(GOPATH)
|
2016-01-27 21:24:36 +08:00
|
|
|
|
|
|
|
all: build
|
|
|
|
|
2016-05-17 19:13:37 +08:00
|
|
|
build: godep fmt frps frpc build_test
|
|
|
|
|
|
|
|
build_test: echo_server http_server
|
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:
|
2016-05-17 19:13:37 +08:00
|
|
|
go fmt ./src/...
|
|
|
|
@go fmt ./test/echo_server.go
|
|
|
|
@go fmt ./test/http_server.go
|
|
|
|
@go fmt ./test/func_test.go
|
2016-02-03 18:46:24 +08:00
|
|
|
|
2016-01-27 21:24:36 +08:00
|
|
|
frps:
|
2016-04-11 11:21:35 +08:00
|
|
|
godep go build -o bin/frps ./src/frp/cmd/frps
|
2016-01-27 21:24:36 +08:00
|
|
|
|
|
|
|
frpc:
|
2016-04-11 11:21:35 +08:00
|
|
|
godep go build -o bin/frpc ./src/frp/cmd/frpc
|
2016-02-03 18:14:16 +08:00
|
|
|
|
2016-05-17 19:13:37 +08:00
|
|
|
echo_server:
|
|
|
|
godep go build -o test/bin/echo_server ./test/echo_server.go
|
|
|
|
|
|
|
|
http_server:
|
|
|
|
godep go build -o test/bin/http_server ./test/http_server.go
|
|
|
|
|
|
|
|
test: gotest
|
|
|
|
|
|
|
|
gotest:
|
|
|
|
godep go test -v ./src/...
|
|
|
|
|
|
|
|
alltest:
|
2016-05-17 19:17:04 +08:00
|
|
|
cd ./test && ./run_test.sh && cd -
|
2016-05-17 19:13:37 +08:00
|
|
|
godep go test -v ./src/...
|
|
|
|
godep go test -v ./test/func_test.go
|
2016-05-17 19:17:04 +08:00
|
|
|
cd ./test && ./clean_test.sh && cd -
|
2016-05-17 19:13:37 +08:00
|
|
|
|
|
|
|
clean:
|
|
|
|
rm -f ./bin/frpc
|
|
|
|
rm -f ./bin/frps
|
|
|
|
rm -f ./test/bin/echo_server
|
|
|
|
rm -f ./test/bin/http_server
|
2016-05-17 19:17:04 +08:00
|
|
|
cd ./test && ./clean_test.sh && cd -
|