2022-08-13 10:36:49 +00:00
|
|
|
NAME = sing-box
|
|
|
|
COMMIT = $(shell git rev-parse --short HEAD)
|
2023-12-09 04:11:21 +00:00
|
|
|
TAGS_GO118 = with_gvisor,with_dhcp,with_wireguard,with_reality_server,with_clash_api
|
|
|
|
TAGS_GO120 = with_quic,with_ech,with_utls
|
2023-08-21 10:14:17 +00:00
|
|
|
TAGS ?= $(TAGS_GO118),$(TAGS_GO120)
|
2023-11-13 06:12:22 +00:00
|
|
|
TAGS_TEST ?= with_gvisor,with_quic,with_wireguard,with_grpc,with_ech,with_utls,with_reality_server
|
2023-03-13 11:46:08 +00:00
|
|
|
|
|
|
|
GOHOSTOS = $(shell go env GOHOSTOS)
|
|
|
|
GOHOSTARCH = $(shell go env GOHOSTARCH)
|
|
|
|
VERSION=$(shell CGO_ENABLED=0 GOOS=$(GOHOSTOS) GOARCH=$(GOHOSTARCH) go run ./cmd/internal/read_tag)
|
|
|
|
|
2023-08-11 07:44:04 +00:00
|
|
|
PARAMS = -v -trimpath -ldflags "-X 'github.com/sagernet/sing-box/constant.Version=$(VERSION)' -s -w -buildid="
|
2023-08-21 10:14:17 +00:00
|
|
|
MAIN_PARAMS = $(PARAMS) -tags $(TAGS)
|
2022-08-13 10:36:49 +00:00
|
|
|
MAIN = ./cmd/sing-box
|
2023-03-11 11:18:12 +00:00
|
|
|
PREFIX ?= $(shell go env GOPATH)
|
2022-08-12 14:53:46 +00:00
|
|
|
|
2023-11-09 09:04:08 +00:00
|
|
|
.PHONY: test release docs
|
2022-08-12 14:53:46 +00:00
|
|
|
|
|
|
|
build:
|
2023-08-11 07:44:04 +00:00
|
|
|
go build $(MAIN_PARAMS) $(MAIN)
|
|
|
|
|
|
|
|
ci_build_go118:
|
|
|
|
go build $(PARAMS) $(MAIN)
|
|
|
|
go build $(PARAMS) -tags "$(TAGS_GO118)" $(MAIN)
|
|
|
|
|
|
|
|
ci_build:
|
2022-08-12 14:53:46 +00:00
|
|
|
go build $(PARAMS) $(MAIN)
|
2023-08-11 07:44:04 +00:00
|
|
|
go build $(MAIN_PARAMS) $(MAIN)
|
2022-08-12 14:53:46 +00:00
|
|
|
|
|
|
|
install:
|
2023-09-16 13:36:06 +00:00
|
|
|
go build -o $(PREFIX)/bin/$(NAME) $(MAIN_PARAMS) $(MAIN)
|
2022-08-12 14:53:46 +00:00
|
|
|
|
|
|
|
fmt:
|
2022-08-13 10:36:49 +00:00
|
|
|
@gofumpt -l -w .
|
|
|
|
@gofmt -s -w .
|
2023-05-19 07:46:48 +00:00
|
|
|
@gci write --custom-order -s standard -s "prefix(github.com/sagernet/)" -s "default" .
|
2022-08-12 14:53:46 +00:00
|
|
|
|
2022-08-14 16:25:49 +00:00
|
|
|
fmt_install:
|
|
|
|
go install -v mvdan.cc/gofumpt@latest
|
2023-02-09 13:01:48 +00:00
|
|
|
go install -v github.com/daixiang0/gci@latest
|
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 ./...
|
|
|
|
|
2022-08-14 16:25:49 +00:00
|
|
|
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-26 08:33:12 +00:00
|
|
|
release:
|
2023-06-14 01:37:06 +00:00
|
|
|
go run ./cmd/internal/build goreleaser release --clean --skip-publish || exit 1
|
2022-08-26 08:33:12 +00:00
|
|
|
mkdir dist/release
|
2023-11-14 09:19:29 +00:00
|
|
|
mv dist/*.tar.gz dist/*.zip dist/*.deb dist/*.rpm dist/*.pkg.tar.zst dist/release
|
2023-08-27 13:14:10 +00:00
|
|
|
ghr --replace --draft --prerelease -p 3 "v${VERSION}" dist/release
|
2023-10-21 04:00:00 +00:00
|
|
|
rm -r dist/release
|
2022-08-26 08:33:12 +00:00
|
|
|
|
|
|
|
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-14 16:25:49 +00:00
|
|
|
|
2023-08-30 09:35:40 +00:00
|
|
|
update_android_version:
|
2023-08-27 13:14:10 +00:00
|
|
|
go run ./cmd/internal/update_android_version
|
2023-08-30 09:35:40 +00:00
|
|
|
|
2023-08-31 06:56:01 +00:00
|
|
|
build_android:
|
2023-11-09 06:34:19 +00:00
|
|
|
cd ../sing-box-for-android && ./gradlew :app:assemblePlayRelease && ./gradlew --stop
|
2023-08-31 06:56:01 +00:00
|
|
|
|
|
|
|
upload_android:
|
|
|
|
mkdir -p dist/release_android
|
2023-11-09 06:34:19 +00:00
|
|
|
cp ../sing-box-for-android/app/build/outputs/apk/play/release/*.apk dist/release_android
|
2023-08-27 13:14:10 +00:00
|
|
|
ghr --replace --draft --prerelease -p 3 "v${VERSION}" dist/release_android
|
2023-08-31 06:56:01 +00:00
|
|
|
rm -rf dist/release_android
|
2023-08-27 13:14:10 +00:00
|
|
|
|
2023-08-31 06:56:01 +00:00
|
|
|
release_android: lib_android update_android_version build_android upload_android
|
2023-08-30 09:35:40 +00:00
|
|
|
|
2023-08-27 13:14:10 +00:00
|
|
|
publish_android:
|
2023-11-09 06:34:19 +00:00
|
|
|
cd ../sing-box-for-android && ./gradlew :app:publishPlayReleaseBundle
|
2023-11-02 18:20:35 +00:00
|
|
|
|
|
|
|
publish_android_appcenter:
|
2023-11-09 06:34:19 +00:00
|
|
|
cd ../sing-box-for-android && ./gradlew :app:appCenterAssembleAndUploadPlayRelease
|
2023-08-27 13:14:10 +00:00
|
|
|
|
|
|
|
build_ios:
|
|
|
|
cd ../sing-box-for-apple && \
|
|
|
|
rm -rf build/SFI.xcarchive && \
|
|
|
|
xcodebuild archive -scheme SFI -configuration Release -archivePath build/SFI.xcarchive
|
|
|
|
|
|
|
|
upload_ios_app_store:
|
|
|
|
cd ../sing-box-for-apple && \
|
2023-10-21 04:00:00 +00:00
|
|
|
xcodebuild -exportArchive -archivePath build/SFI.xcarchive -exportOptionsPlist SFI/Upload.plist -allowProvisioningUpdates
|
2023-08-27 13:14:10 +00:00
|
|
|
|
|
|
|
release_ios: build_ios upload_ios_app_store
|
|
|
|
|
|
|
|
build_macos:
|
|
|
|
cd ../sing-box-for-apple && \
|
|
|
|
rm -rf build/SFM.xcarchive && \
|
|
|
|
xcodebuild archive -scheme SFM -configuration Release -archivePath build/SFM.xcarchive
|
|
|
|
|
|
|
|
upload_macos_app_store:
|
|
|
|
cd ../sing-box-for-apple && \
|
2023-10-21 04:00:00 +00:00
|
|
|
xcodebuild -exportArchive -archivePath build/SFM.xcarchive -exportOptionsPlist SFI/Upload.plist -allowProvisioningUpdates
|
2023-08-27 13:14:10 +00:00
|
|
|
|
|
|
|
release_macos: build_macos upload_macos_app_store
|
|
|
|
|
|
|
|
build_macos_independent:
|
|
|
|
cd ../sing-box-for-apple && \
|
|
|
|
rm -rf build/SFT.System.xcarchive && \
|
|
|
|
xcodebuild archive -scheme SFM.System -configuration Release -archivePath build/SFM.System.xcarchive
|
|
|
|
|
|
|
|
notarize_macos_independent:
|
|
|
|
cd ../sing-box-for-apple && \
|
2023-10-21 04:00:00 +00:00
|
|
|
xcodebuild -exportArchive -archivePath "build/SFM.System.xcarchive" -exportOptionsPlist SFM.System/Upload.plist -allowProvisioningUpdates
|
2023-08-27 13:14:10 +00:00
|
|
|
|
2023-08-31 06:56:01 +00:00
|
|
|
wait_notarize_macos_independent:
|
|
|
|
sleep 60
|
|
|
|
|
2023-08-27 13:14:10 +00:00
|
|
|
export_macos_independent:
|
|
|
|
rm -rf dist/SFM
|
2023-08-31 06:56:01 +00:00
|
|
|
mkdir -p dist/SFM
|
2023-08-27 13:14:10 +00:00
|
|
|
cd ../sing-box-for-apple && \
|
|
|
|
xcodebuild -exportNotarizedApp -archivePath build/SFM.System.xcarchive -exportPath "../sing-box/dist/SFM"
|
|
|
|
|
|
|
|
upload_macos_independent:
|
|
|
|
cd dist/SFM && \
|
|
|
|
rm -f *.zip && \
|
|
|
|
zip -ry "SFM-${VERSION}-universal.zip" SFM.app && \
|
|
|
|
ghr --replace --draft --prerelease "v${VERSION}" *.zip
|
|
|
|
|
2023-09-07 14:31:53 +00:00
|
|
|
release_macos_independent: build_macos_independent notarize_macos_independent wait_notarize_macos_independent export_macos_independent upload_macos_independent
|
2023-08-27 13:14:10 +00:00
|
|
|
|
|
|
|
build_tvos:
|
|
|
|
cd ../sing-box-for-apple && \
|
|
|
|
rm -rf build/SFT.xcarchive && \
|
|
|
|
xcodebuild archive -scheme SFT -configuration Release -archivePath build/SFT.xcarchive
|
|
|
|
|
|
|
|
upload_tvos_app_store:
|
|
|
|
cd ../sing-box-for-apple && \
|
2023-10-21 04:00:00 +00:00
|
|
|
xcodebuild -exportArchive -archivePath "build/SFT.xcarchive" -exportOptionsPlist SFI/Upload.plist -allowProvisioningUpdates
|
2023-08-27 13:14:10 +00:00
|
|
|
|
|
|
|
release_tvos: build_tvos upload_tvos_app_store
|
|
|
|
|
|
|
|
update_apple_version:
|
|
|
|
go run ./cmd/internal/update_apple_version
|
|
|
|
|
2023-09-07 14:31:53 +00:00
|
|
|
release_apple: lib_ios update_apple_version release_ios release_macos release_tvos release_macos_independent
|
2023-08-30 09:35:40 +00:00
|
|
|
|
2023-08-31 06:56:01 +00:00
|
|
|
release_apple_beta: update_apple_version release_ios release_macos release_tvos
|
2023-08-30 09:35:40 +00:00
|
|
|
|
2022-08-12 14:53:46 +00:00
|
|
|
test:
|
2022-09-21 10:46:20 +00:00
|
|
|
@go test -v ./... && \
|
2022-09-14 04:56:45 +00:00
|
|
|
cd test && \
|
2022-08-22 04:02:16 +00:00
|
|
|
go mod tidy && \
|
2022-09-21 10:46:20 +00:00
|
|
|
go test -v -tags "$(TAGS_TEST)" .
|
2022-09-25 14:16:24 +00:00
|
|
|
|
2022-09-21 10:46:20 +00:00
|
|
|
test_stdio:
|
|
|
|
@go test -v ./... && \
|
|
|
|
cd test && \
|
|
|
|
go mod tidy && \
|
|
|
|
go test -v -tags "$(TAGS_TEST),force_stdio" .
|
2022-08-12 14:53:46 +00:00
|
|
|
|
2023-08-27 13:14:10 +00:00
|
|
|
lib_android:
|
2023-04-13 02:36:22 +00:00
|
|
|
go run ./cmd/internal/build_libbox -target android
|
|
|
|
|
2023-08-27 13:14:10 +00:00
|
|
|
lib_ios:
|
2023-04-13 02:36:22 +00:00
|
|
|
go run ./cmd/internal/build_libbox -target ios
|
|
|
|
|
2022-10-25 04:55:00 +00:00
|
|
|
lib:
|
2023-04-13 02:36:22 +00:00
|
|
|
go run ./cmd/internal/build_libbox -target android
|
|
|
|
go run ./cmd/internal/build_libbox -target ios
|
2022-10-25 04:55:00 +00:00
|
|
|
|
|
|
|
lib_install:
|
2023-12-08 17:36:13 +00:00
|
|
|
go install -v github.com/sagernet/gomobile/cmd/gomobile@v0.1.1
|
|
|
|
go install -v github.com/sagernet/gomobile/cmd/gobind@v0.1.1
|
2022-10-25 04:55:00 +00:00
|
|
|
|
2023-11-09 09:04:08 +00:00
|
|
|
docs:
|
|
|
|
mkdocs serve
|
|
|
|
|
|
|
|
publish_docs:
|
|
|
|
mkdocs gh-deploy -m "Update" --force --ignore-version --no-history
|
|
|
|
|
|
|
|
docs_install:
|
|
|
|
pip install --force-reinstall mkdocs-material=="9.*" mkdocs-static-i18n=="1.2.*"
|
2022-08-12 14:53:46 +00:00
|
|
|
clean:
|
2022-09-25 14:16:24 +00:00
|
|
|
rm -rf bin dist sing-box
|
2022-08-12 14:53:46 +00:00
|
|
|
rm -f $(shell go env GOPATH)/sing-box
|
|
|
|
|
|
|
|
update:
|
|
|
|
git fetch
|
|
|
|
git reset FETCH_HEAD --hard
|
|
|
|
git clean -fdx
|