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.

39 lines
1.1 KiB

9 years ago
9 years ago
  1. .PHONY: get_deps build all list_deps install
  2. all: test install
  3. TMROOT = $${TMROOT:-$$HOME/.tendermint}
  4. install: get_deps
  5. go install github.com/tendermint/tendermint/cmd/tendermint
  6. build:
  7. go build -o build/tendermint github.com/tendermint/tendermint/cmd/tendermint
  8. build_race:
  9. go build -race -o build/tendermint github.com/tendermint/tendermint/cmd/tendermint
  10. test: build
  11. -rm -rf ~/.tendermint_test_bak
  12. -mv ~/.tendermint_test ~/.tendermint_test_bak && true
  13. go test github.com/tendermint/tendermint/...
  14. test_novendor: build
  15. -rm -rf ~/.tendermint_test_bak
  16. -mv ~/.tendermint_test ~/.tendermint_test_bak && true
  17. go test $$(glide novendor)
  18. draw_deps:
  19. # requires brew install graphviz
  20. go get github.com/hirokidaichi/goviz
  21. goviz -i github.com/tendermint/tendermint/cmd/tendermint | dot -Tpng -o huge.png
  22. list_deps:
  23. go list -f '{{join .Deps "\n"}}' github.com/tendermint/tendermint/... | xargs go list -f '{{if not .Standard}}{{.ImportPath}}{{end}}'
  24. get_deps:
  25. go get -d github.com/tendermint/tendermint/...
  26. revision:
  27. -echo `git rev-parse --verify HEAD` > $(TMROOT)/revision
  28. -echo `git rev-parse --verify HEAD` >> $(TMROOT)/revision_history