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
lib: $(SOURCES)
lib: $(sources)
go build
build: lib
check: $(SOURCES) build
check: $(sources) build
go test -count 1
.cover: $(SOURCES) build
.cover: $(sources) build
go test -count 1 -coverprofile .cover
cover: .cover
@ -19,7 +19,7 @@ cover: .cover
showcover: .cover
go tool cover -html .cover
fmt: $(SOURCES)
fmt: $(sources)
go fmt
clean: