pve-exporter/Makefile
Davíð Steinn Geirsson 1a13f19b1f feat: add main entry point with CLI flags and HTTP server
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-03-20 11:27:53 +00:00

12 lines
146 B
Makefile

.PHONY: build test clean
BINARY := pve-exporter
build:
CGO_ENABLED=0 go build -o $(BINARY) .
test:
go test -v ./...
clean:
rm -f $(BINARY)