Files
arinera-minecraft-tool/Makefile
2026-05-28 17:41:59 +08:00

14 lines
227 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:
cd backend && uv run main.py
manager:
cd backend && uv run manager.py