# Makefile for k3r053n3 (Kimi K3 LLM Gateway)

k3r053n3:
	go build -trimpath -ldflags="-s -w" -o bin/k3r053n3 .

test:
	go test -v ./...

all: k3r053n3

clean:
	rm -rf bin/

.PHONY: all clean k3r053n3 test
