Files
qorona/Makefile
T

14 lines
170 B
Makefile
Raw Normal View History

2026-08-27 13:54:10 +03:00
all: q38max
q38max:
mkdir -p bin
go build -trimpath -ldflags="-s -w" -o bin/q38max main.go
test:
go test -v ./...
clean:
rm -rf bin
.PHONY: all q38max test clean