Files
azure-openai-proxy/Makefile
2023-04-04 15:02:24 +08:00

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