frp/Makefile

50 lines
858 B
Makefile
Raw Normal View History

2016-01-27 20:24:36 +07:00
export PATH := $(GOPATH)/bin:$(PATH)
2016-08-11 23:32:33 +07:00
all: fmt build
2016-01-27 20:24:36 +07:00
2017-03-09 23:52:32 +07:00
build: frps frpc
2016-01-27 20:24:36 +07:00
2016-08-11 23:39:39 +07:00
# compile assets into binary file
2017-03-27 01:21:37 +07:00
file:
rm -rf ./assets/static/*
cp -rf ./web/frps/dist/* ./assets/static
go get -d github.com/rakyll/statik
go install github.com/rakyll/statik
rm -rf ./assets/statik
2017-03-09 01:03:47 +07:00
go generate ./assets/...
2016-02-03 17:46:24 +07:00
fmt:
2018-03-21 10:52:11 +07:00
go fmt ./...
2017-03-09 23:52:32 +07:00
2016-01-27 20:24:36 +07:00
frps:
2017-03-09 01:03:47 +07:00
go build -o bin/frps ./cmd/frps
@cp -rf ./assets/static ./bin
2016-01-27 20:24:36 +07:00
frpc:
2017-03-09 01:03:47 +07:00
go build -o bin/frpc ./cmd/frpc
2016-02-03 17:14:16 +07:00
2016-05-17 18:13:37 +07:00
test: gotest
gotest:
2017-03-09 23:52:32 +07:00
go test -v ./assets/...
go test -v ./client/...
go test -v ./cmd/...
go test -v ./models/...
go test -v ./server/...
go test -v ./utils/...
2018-01-18 13:53:44 +07:00
ci:
2017-03-27 23:27:30 +07:00
cd ./tests && ./run_test.sh && cd -
2017-03-09 23:52:32 +07:00
go test -v ./tests/...
2017-03-27 23:27:30 +07:00
cd ./tests && ./clean_test.sh && cd -
2016-05-17 18:13:37 +07:00
2018-04-10 16:46:49 +07:00
cic:
2018-01-23 16:11:59 +07:00
cd ./tests && ./clean_test.sh && cd -
2018-01-18 13:53:44 +07:00
alltest: gotest ci
2016-05-17 18:13:37 +07:00
clean:
rm -f ./bin/frpc
rm -f ./bin/frps
cd ./tests && ./clean_test.sh && cd -