1 Star 1 Fork 2

gxlhinata / frp

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
Makefile 777 Bytes
一键复制 编辑 原始数据 按行查看 历史
fatedier 提交于 2019-10-12 20:13 . change log method
export PATH := $(GOPATH)/bin:$(PATH)
all: fmt build
build: frps frpc
# compile assets into binary file
file:
rm -rf ./assets/frps/static/*
rm -rf ./assets/frpc/static/*
cp -rf ./web/frps/dist/* ./assets/frps/static
cp -rf ./web/frpc/dist/* ./assets/frpc/static
rm -rf ./assets/frps/statik
rm -rf ./assets/frpc/statik
go generate ./assets/...
fmt:
go fmt ./...
frps:
go build -o bin/frps ./cmd/frps
frpc:
go build -o bin/frpc ./cmd/frpc
test: gotest
gotest:
go test -v --cover ./assets/...
go test -v --cover ./client/...
go test -v --cover ./cmd/...
go test -v --cover ./models/...
go test -v --cover ./server/...
go test -v --cover ./utils/...
ci:
go test -count=1 -p=1 -v ./tests/...
alltest: gotest ci
clean:
rm -f ./bin/frpc
rm -f ./bin/frps
1
https://gitee.com/gxlhinata/frp.git
git@gitee.com:gxlhinata/frp.git
gxlhinata
frp
frp
master

搜索帮助