1
0
buffer/Makefile
2026-03-14 23:29:29 +01:00

29 lines
380 B
Makefile

sources = $(shell find . -name "*.go")
default: build
build: $(sources)
go build
fmt: $(sources)
go fmt
check: $(sources)
go test -count 1
.cover: $(sources)
go test -count 1 -coverprofile .cover
cover: .cover
go tool cover -func .cover
showcover: .cover
go tool cover -html .cover
bench: $(sources)
go test -bench Benchmark -run ^$
clean:
go clean
rm -f .cover