XFE Git
XFE Studio Git
Git 首页 全局搜索
XFE 主站 文档 NuGet
公开
关注 0 Fork 0 Star 0
UTF-8
.PHONY: all fetch build clean vet test

all: fetch build

# Fetch the runtime manifest (validates URLs; runtimes download at first run)
fetch:
	./fetch-python.sh

# Cross-compile launchers for every platform and zip releases into dist/
build:
	./build-all.sh

clean:
	rm -rf dist

vet:
	go vet ./...

test:
	go test ./...

# Single-platform dev build (fast iteration)
dev:
	go build -o g4f-go .