Files
azure-openai-proxy/Makefile
2023-03-30 17:11:23 +08:00

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