mirror of
https://github.com/fluencelabs/tendermint
synced 2025-06-28 20:21:47 +00:00
10 lines
157 B
Makefile
10 lines
157 B
Makefile
.PHONY: docs
|
|
REPO:=github.com/tendermint/tmlibs/events
|
|
|
|
docs:
|
|
@go get github.com/davecheney/godoc2md
|
|
godoc2md $(REPO) > README.md
|
|
|
|
test:
|
|
go test -v ./...
|