frp/Makefile

69 lines
1.4 KiB
Makefile
Raw Permalink Normal View History

2016-01-27 21:24:36 +08:00
export PATH := $(GOPATH)/bin:$(PATH)
export GO111MODULE=on
2020-09-23 14:54:40 +08:00
LDFLAGS := -s -w
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
2017-03-10 00:52:32 +08:00
build: frps frpc
2016-01-27 21:24:36 +08:00
2016-08-12 00:39:39 +08:00
# compile assets into binary file
2017-03-27 02:21:37 +08:00
file:
2019-02-01 19:26:10 +08:00
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
2016-02-03 18:46:24 +08:00
fmt:
2018-03-21 11:52:11 +08:00
go fmt ./...
2019-10-12 20:13:12 +08:00
fmt-more:
gofumpt -l -w .
gci:
gci write -s standard -s default -s "prefix(github.com/fatedier/frp/)" ./
2022-03-28 12:12:35 +08:00
vet:
go vet ./...
2016-01-27 21:24:36 +08:00
frps:
env CGO_ENABLED=0 go build -trimpath -ldflags "$(LDFLAGS)" -o bin/frps ./cmd/frps
2016-01-27 21:24:36 +08:00
frpc:
env CGO_ENABLED=0 go build -trimpath -ldflags "$(LDFLAGS)" -o bin/frpc ./cmd/frpc
2016-02-03 18:14:16 +08:00
2016-05-17 19:13:37 +08:00
test: gotest
gotest:
2018-07-11 23:27:47 +08:00
go test -v --cover ./assets/...
go test -v --cover ./cmd/...
2020-09-23 13:49:14 +08:00
go test -v --cover ./client/...
2018-07-11 23:27:47 +08:00
go test -v --cover ./server/...
2020-09-23 13:49:14 +08:00
go test -v --cover ./pkg/...
2017-03-10 00:52:32 +08:00
2020-06-02 22:48:55 +08:00
e2e:
./hack/run-e2e.sh
2021-06-18 16:48:36 +08:00
e2e-trace:
DEBUG=true LOG_LEVEL=trace ./hack/run-e2e.sh
e2e-compatibility-last-frpc:
if [ ! -d "./lastversion" ]; then \
TARGET_DIRNAME=lastversion ./hack/download.sh; \
fi
FRPC_PATH="`pwd`/lastversion/frpc" ./hack/run-e2e.sh
rm -r ./lastversion
e2e-compatibility-last-frps:
if [ ! -d "./lastversion" ]; then \
TARGET_DIRNAME=lastversion ./hack/download.sh; \
fi
FRPS_PATH="`pwd`/lastversion/frps" ./hack/run-e2e.sh
rm -r ./lastversion
2022-03-28 12:12:35 +08:00
alltest: vet gotest e2e
2018-01-18 14:53:44 +08:00
2016-05-17 19:13:37 +08:00
clean:
rm -f ./bin/frpc
rm -f ./bin/frps
rm -rf ./lastversion