15 lines
206 B
Makefile
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
|