frp/Makefile

56 lines
1.0 KiB
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
2016-08-12 00:32:33 +08:00
all: fmt build
2016-01-27 21:24:36 +08:00
build: 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-08-12 00:39:39 +08:00
# compile assets into binary file
2016-08-12 00:32:33 +08:00
assets:
go get -d github.com/rakyll/statik
@go install github.com/rakyll/statik
@rm -rf ./src/assets/statik
go generate ./src/...
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
2016-08-12 00:39:39 +08:00
@cp -rf ./src/assets/static ./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 -
save:
godep save ./src/...