mirror of
https://github.com/stulzq/azure-openai-proxy.git
synced 2025-12-18 14:54:19 +01:00
13 lines
206 B
Makefile
13 lines
206 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
|
|
|
|
fmt:
|
|
go fmt ./...
|
|
|
|
vet:
|
|
go vet ./...
|
|
|
|
.PHONY: build fmt vet |