mirror of
https://github.com/fatedier/frp.git
synced 2024-11-08 09:04:52 +01:00
48 lines
890 B
Makefile
48 lines
890 B
Makefile
export PATH := $(GOPATH)/bin:$(PATH)
|
|
export GO111MODULE=on
|
|
LDFLAGS := -s -w
|
|
|
|
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:
|
|
env CGO_ENABLED=0 go build -ldflags "$(LDFLAGS)" -o bin/frps ./cmd/frps
|
|
|
|
frpc:
|
|
env CGO_ENABLED=0 go build -ldflags "$(LDFLAGS)" -o bin/frpc ./cmd/frpc
|
|
|
|
test: gotest
|
|
|
|
gotest:
|
|
go test -v --cover ./assets/...
|
|
go test -v --cover ./cmd/...
|
|
go test -v --cover ./client/...
|
|
go test -v --cover ./server/...
|
|
go test -v --cover ./pkg/...
|
|
|
|
ci:
|
|
go test -count=1 -p=1 -v ./tests/...
|
|
|
|
e2e:
|
|
./hack/run-e2e.sh
|
|
|
|
alltest: gotest ci e2e
|
|
|
|
clean:
|
|
rm -f ./bin/frpc
|
|
rm -f ./bin/frps
|