Files
arinera-minecraft-tool/Makefile
chenxiangtong 3ff2454c63 feat: 重构
2026-05-28 17:37:57 +08:00

14 lines
215 B
Makefile

.PHONY: all backend
all: dist/amt.exe
./dist/amt.exe
dist/amt.exe: $(wildcard *.go) go.mod go.sum
@mkdir -p dist
go build -o dist/amt.exe .
backend:
uv run backend/main.py
manager:
uv run backend/manager.py