You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
all: build
|
|
|
|
build:
|
|
go build -o tendermint github.com/tendermint/tendermint/cmd
|
|
|
|
build_race:
|
|
go build -race -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/...
|