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.

16 lines
417 B

  1. all: build
  2. build:
  3. go build -o tendermint github.com/tendermint/tendermint/cmd
  4. build_race:
  5. go build -race -o tendermint github.com/tendermint/tendermint/cmd
  6. test:
  7. go test github.com/tendermint/tendermint/...
  8. list_deps:
  9. go list -f '{{join .Deps "\n"}}' github.com/tendermint/tendermint/... | xargs go list -f '{{if not .Standard}}{{.ImportPath}}{{end}}'
  10. get_deps:
  11. go get github.com/tendermint/tendermint/...