mirror of
https://github.com/fluencelabs/tendermint
synced 2025-04-24 22:32:15 +00:00
14 lines
337 B
Makefile
14 lines
337 B
Makefile
|
all: build
|
||
|
|
||
|
build:
|
||
|
go build -o tendermint github.com/tendermint/tendermint/cmd
|
||
|
|
||
|
test:
|
||
|
go test github.com/tendermint/tendermint/...
|
||
|
|
||
|
list_deps:
|
||
|
go list -f '{{join .Deps "\n"}}' github.com/tendermint/tendermint/... | xargs go list -f '{{if not .Standard}}{{.ImportPath}}{{end}}'
|
||
|
|
||
|
get_deps:
|
||
|
go get github.com/tendermint/tendermint/...
|