syncbus/Makefile

26 lines
315 B
Makefile
Raw Permalink Normal View History

2018-03-18 20:42:20 +01:00
.PHONY: .coverprofile
default: build
2024-12-17 18:28:27 +01:00
build:
go build ./...
check: test
2018-03-18 20:42:20 +01:00
2024-12-17 18:28:27 +01:00
test: .coverprofile
2018-03-18 20:42:20 +01:00
.coverprofile:
go test -coverprofile .coverprofile
cover: .coverprofile
go tool cover -func .coverprofile
showcover: .coverprofile
go tool cover -html .coverprofile
fmt:
2024-12-17 18:28:27 +01:00
go fmt ./...
2018-03-18 20:42:20 +01:00
clean:
go clean -i -cache