Files
qflash/Makefile
T

19 lines
311 B
Makefile
Raw Normal View History

# Makefile for qflash (Qwen3.8-Flash-Next OpenAI Proxy Gateway)
# Created by Luxferre in 2026, released into the public domain.
qflash:
go build -trimpath -ldflags="-s -w" -o bin/qflash .
all: qflash
test:
go test -v ./...
clean:
rm -rf bin/
run: qflash
./bin/qflash
.PHONY: all clean qflash run test