frp/Makefile

46 lines
843 B
Makefile
Raw Normal View History

2016-01-27 21:24:36 +08:00
export PATH := $(GOPATH)/bin:$(PATH)
export GO15VENDOREXPERIMENT := 1
2016-01-27 21:24:36 +08:00
all: build
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:
go build -o bin/frps ./src/cmd/frps
cp -rf ./assets ./bin
2016-01-27 21:24:36 +08:00
frpc:
go build -o bin/frpc ./src/cmd/frpc
2016-02-03 18:14:16 +08:00
2016-05-17 19:13:37 +08:00
echo_server:
go build -o test/bin/echo_server ./test/echo_server.go
2016-05-17 19:13:37 +08:00
http_server:
go build -o test/bin/http_server ./test/http_server.go
2016-05-17 19:13:37 +08:00
test: gotest
gotest:
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 -
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 -