frp/Makefile

46 lines
889 B
Makefile
Raw Normal View History

2016-01-27 14:24:36 +01:00
export PATH := $(GOPATH)/bin:$(PATH)
export GOPATH := $(shell pwd)/Godeps/_workspace:$(shell pwd):$(GOPATH)
2016-01-27 14:24:36 +01:00
all: build
build: fmt frps frpc build_test
2016-05-17 13:13:37 +02:00
build_test: echo_server http_server
2016-01-27 14:24:36 +01:00
2016-02-03 11:46:24 +01:00
fmt:
2016-05-17 13:13:37 +02: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 11:46:24 +01:00
2016-01-27 14:24:36 +01:00
frps:
go build -o bin/frps ./src/frp/cmd/frps
cp -rf ./assets ./bin
2016-01-27 14:24:36 +01:00
frpc:
go build -o bin/frpc ./src/frp/cmd/frpc
2016-02-03 11:14:16 +01:00
2016-05-17 13:13:37 +02:00
echo_server:
go build -o test/bin/echo_server ./test/echo_server.go
2016-05-17 13:13:37 +02:00
http_server:
go build -o test/bin/http_server ./test/http_server.go
2016-05-17 13:13:37 +02:00
test: gotest
gotest:
go test -v ./src/...
2016-05-17 13:13:37 +02:00
alltest:
2016-05-17 13:17:04 +02:00
cd ./test && ./run_test.sh && cd -
go test -v ./src/...
go test -v ./test/func_test.go
2016-05-17 13:17:04 +02:00
cd ./test && ./clean_test.sh && cd -
2016-05-17 13:13:37 +02: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 13:17:04 +02:00
cd ./test && ./clean_test.sh && cd -