mirror of
https://github.com/edouardparis/lntop
synced 2024-11-06 03:20:21 +00:00
12 lines
260 B
Makefile
12 lines
260 B
Makefile
default: check
|
|
|
|
check:
|
|
go test
|
|
|
|
docs:
|
|
godoc2md github.com/juju/loggo > README.md
|
|
sed -i 's|\[godoc-link-here\]|[![GoDoc](https://godoc.org/github.com/juju/loggo?status.svg)](https://godoc.org/github.com/juju/loggo)|' README.md
|
|
|
|
|
|
.PHONY: default check docs
|