agentikube/Makefile
2026-02-07 13:49:11 -05:00

18 lines
210 B
Makefile

.PHONY: build install clean fmt vet lint
build:
go build -o agentikube ./cmd/agentikube
install:
go install ./cmd/agentikube
clean:
rm -f agentikube
fmt:
go fmt ./...
vet:
go vet ./...
lint: fmt vet