Files
heloha/Makefile
2026-04-24 19:49:13 -05:00

17 lines
179 B
Makefile

BIN := bin/heloha-server
CMD := ./cmd/heloha-server
.PHONY: build run test tidy
build:
go build -o $(BIN) $(CMD)
run:
go run $(CMD)
test:
go test ./...
tidy:
go mod tidy