Files
qorona/Makefile
T

14 lines
170 B
Makefile
Raw Normal View History

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