mirror of https://github.com/fatedier/frp
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
45 lines
889 B
45 lines
889 B
export PATH := $(GOPATH)/bin:$(PATH) |
|
export GOPATH := $(shell pwd)/Godeps/_workspace:$(shell pwd):$(GOPATH) |
|
|
|
all: build |
|
|
|
build: fmt frps frpc build_test |
|
|
|
build_test: echo_server http_server |
|
|
|
fmt: |
|
go fmt ./src/... |
|
@go fmt ./test/echo_server.go |
|
@go fmt ./test/http_server.go |
|
@go fmt ./test/func_test.go |
|
|
|
frps: |
|
go build -o bin/frps ./src/frp/cmd/frps |
|
cp -rf ./assets ./bin |
|
|
|
frpc: |
|
go build -o bin/frpc ./src/frp/cmd/frpc |
|
|
|
echo_server: |
|
go build -o test/bin/echo_server ./test/echo_server.go |
|
|
|
http_server: |
|
go build -o test/bin/http_server ./test/http_server.go |
|
|
|
test: gotest |
|
|
|
gotest: |
|
go test -v ./src/... |
|
|
|
alltest: |
|
cd ./test && ./run_test.sh && cd - |
|
go test -v ./src/... |
|
go test -v ./test/func_test.go |
|
cd ./test && ./clean_test.sh && cd - |
|
|
|
clean: |
|
rm -f ./bin/frpc |
|
rm -f ./bin/frps |
|
rm -f ./test/bin/echo_server |
|
rm -f ./test/bin/http_server |
|
cd ./test && ./clean_test.sh && cd -
|
|
|