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