Files
hygate/Makefile
T

12 lines
165 B
Makefile
Raw Normal View History

2026-07-31 09:54:59 +03:00
# 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