sing-box/Makefile

77 lines
1.9 KiB
Makefile
Raw Normal View History

2022-08-13 10:36:49 +00:00
NAME = sing-box
COMMIT = $(shell git rev-parse --short HEAD)
2022-08-21 05:03:19 +00:00
TAGS ?= with_quic,with_wireguard,with_clash_api
PARAMS = -v -trimpath -tags '$(TAGS)' -ldflags \
2022-08-12 14:53:46 +00:00
'-X "github.com/sagernet/sing-box/constant.Commit=$(COMMIT)" \
-w -s -buildid='
2022-08-13 10:36:49 +00:00
MAIN = ./cmd/sing-box
2022-08-12 14:53:46 +00:00
.PHONY: test release
build:
go build $(PARAMS) $(MAIN)
install:
go install $(PARAMS) $(MAIN)
fmt:
2022-08-13 10:36:49 +00:00
@gofumpt -l -w .
@gofmt -s -w .
@gci write -s "standard,prefix(github.com/sagernet/),default" .
2022-08-12 14:53:46 +00:00
fmt_install:
go install -v mvdan.cc/gofumpt@latest
go install -v github.com/daixiang0/gci@v0.4.0
2022-08-12 14:53:46 +00:00
lint:
GOOS=linux golangci-lint run ./...
2022-08-17 12:15:35 +00:00
GOOS=android golangci-lint run ./...
2022-08-12 14:53:46 +00:00
GOOS=windows golangci-lint run ./...
GOOS=darwin golangci-lint run ./...
GOOS=freebsd golangci-lint run ./...
lint_install:
2022-08-21 05:03:19 +00:00
go install -v github.com/golangci/golangci-lint/cmd/golangci-lint@latest
2022-08-22 10:53:47 +00:00
proto:
@go run ./cmd/internal/protogen
@gofumpt -l -w .
@gofumpt -l -w .
proto_install:
go install -v google.golang.org/protobuf/cmd/protoc-gen-go@latest
go install -v google.golang.org/grpc/cmd/protoc-gen-go-grpc@latest
2022-08-21 05:03:19 +00:00
snapshot:
goreleaser release --rm-dist --snapshot
mkdir dist/release
mv dist/*.tar.gz dist/*.zip dist/*.deb dist/*.rpm dist/release
ghr --delete --draft --prerelease -p 1 nightly dist/release
rm -r dist
2022-08-26 08:33:12 +00:00
release:
goreleaser release --rm-dist --skip-publish
mkdir dist/release
mv dist/*.tar.gz dist/*.zip dist/*.deb dist/*.rpm dist/release
ghr --delete --draft --prerelease -p 3 $(shell git describe --tags) dist/release
rm -r dist
release_install:
2022-08-21 05:03:19 +00:00
go install -v github.com/goreleaser/goreleaser@latest
go install -v github.com/tcnksm/ghr@latest
2022-08-12 14:53:46 +00:00
test:
2022-08-13 10:36:49 +00:00
@go test -v . && \
2022-08-17 12:10:59 +00:00
pushd test && \
2022-08-22 04:02:16 +00:00
go mod tidy && \
2022-09-12 09:30:54 +00:00
go test -v -tags with_quic,with_wireguard,with_grpc,with_ech,with_utls,with_shadowsocksr . && \
2022-08-17 12:10:59 +00:00
popd
2022-08-12 14:53:46 +00:00
clean:
rm -rf bin dist
rm -f $(shell go env GOPATH)/sing-box
update:
git fetch
git reset FETCH_HEAD --hard
git clean -fdx