Files
k3r053n3/Makefile
T
2026-09-02 16:19:51 +03:00

15 lines
206 B
Makefile

# 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