Files
2026-07-31 09:54:59 +03:00

12 lines
165 B
Makefile

# Makefile for hygate (Hunyuan AI Gateway)
hygate:
go build -trimpath -ldflags="-s -w" -o bin/hygate .
all: hygate
clean:
rm -rf bin/
.PHONY: all clean hygate