2016-01-27 21:24:36 +08:00
|
|
|
export PATH := $(GOPATH)/bin:$(PATH)
|
2016-06-07 22:17:37 +08:00
|
|
|
export GOPATH := $(shell pwd)/Godeps/_workspace:$(shell pwd):$(GOPATH)
|
2016-01-27 21:24:36 +08:00
|
|
|
|
|
|
|
all: build
|
|
|
|
|
2016-06-07 22:17:37 +08:00
|
|
|
build: fmt frps frpc build_test
|
2016-05-17 19:13:37 +08:00
|
|
|
|
|
|
|
build_test: echo_server http_server
|
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-06-07 22:17:37 +08:00
|
|
|
go build -o bin/frps ./src/frp/cmd/frps
|
2016-01-27 21:24:36 +08:00
|
|
|
|
|
|
|
frpc:
|
2016-06-07 22:17:37 +08:00
|
|
|
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:
|
2016-06-07 22:17:37 +08:00
|
|
|
go build -o test/bin/echo_server ./test/echo_server.go
|
2016-05-17 19:13:37 +08:00
|
|
|
|
|
|
|
http_server:
|
2016-06-07 22:17:37 +08:00
|
|
|
go build -o test/bin/http_server ./test/http_server.go
|
2016-05-17 19:13:37 +08:00
|
|
|
|
|
|
|
test: gotest
|
|
|
|
|
|
|
|
gotest:
|
2016-06-07 22:17:37 +08:00
|
|
|
go test -v ./src/...
|
2016-05-17 19:13:37 +08:00
|
|
|
|
|
|
|
alltest:
|
2016-05-17 19:17:04 +08:00
|
|
|
cd ./test && ./run_test.sh && cd -
|
2016-06-07 22:17:37 +08:00
|
|
|
go test -v ./src/...
|
|
|
|
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 -
|