Files
statuspanel/Makefile
2026-07-05 14:26:03 -03:00

14 lines
172 B
Makefile

BINARY := statuspanel
CMD := ./cmd/statuspanel
.PHONY: build test clean
build:
CGO_ENABLED=0 go build -o $(BINARY) $(CMD)
test:
go test ./...
clean:
rm -f $(BINARY)