From 3f01b3aa9d60f93b57869a9c4aa7b2d0df7d9bf3 Mon Sep 17 00:00:00 2001 From: Tanishq Dubey Date: Sat, 10 May 2025 19:37:25 -0400 Subject: [PATCH] add make target for agent --- Makefile | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/Makefile b/Makefile index 0ba4b60..74daa1b 100644 --- a/Makefile +++ b/Makefile @@ -20,6 +20,11 @@ test: generate @echo "Running tests..." @go test -count=1 ./... + +kat-agent: + @echo "Building kat-agent..." + @go build -o kat-agent ./cmd/kat-agent/main.go + lint: @echo "Running linter..." @if ! command -v golangci-lint &> /dev/null; then \