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.

43 lines
1.2 KiB

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