1
0

no screaming

This commit is contained in:
Arpad Ryszka 2025-11-05 19:16:30 +01:00
parent f4288a17b0
commit 6ce28547b8

View File

@ -1,16 +1,16 @@
SOURCES = $(shell find . -name "*.go") sources = $(shell find . -name "*.go")
default: build default: build
lib: $(SOURCES) lib: $(sources)
go build go build
build: lib build: lib
check: $(SOURCES) build check: $(sources) build
go test -count 1 go test -count 1
.cover: $(SOURCES) build .cover: $(sources) build
go test -count 1 -coverprofile .cover go test -count 1 -coverprofile .cover
cover: .cover cover: .cover
@ -19,7 +19,7 @@ cover: .cover
showcover: .cover showcover: .cover
go tool cover -html .cover go tool cover -html .cover
fmt: $(SOURCES) fmt: $(sources)
go fmt go fmt
clean: clean: