mirror of
https://github.com/harivansh-afk/agentikube.git
synced 2026-04-15 09:01:13 +00:00
18 lines
210 B
Makefile
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
|