Files
atlas/Makefile
othman.suseno 4991a95008
Some checks failed
CI / build (push) Failing after 3m43s
initial project structure
2025-12-14 15:48:02 +07:00

16 lines
131 B
Makefile

BINS=atlas-api atlas-tui
all: build
build:
go build ./cmd/...
test:
go test ./...
lint:
go vet ./...
clean:
rm -f $(BINS)