.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