Files

15 lines
206 B
Makefile
Raw Permalink Normal View History

2026-09-02 16:19:51 +03:00
# 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