mirror of
https://github.com/stulzq/azure-openai-proxy.git
synced 2026-01-08 09:04:25 +01:00
7 lines
158 B
Makefile
7 lines
158 B
Makefile
LDFLAGS := -s -w
|
|
BIN_NAME := "azure-openai-proxy"
|
|
|
|
build:
|
|
@env CGO_ENABLED=0 go build -trimpath -ldflags "$(LDFLAGS)" -o bin/$(BIN_NAME) ./cmd
|
|
|
|
.PHONY: build |