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.

46 lines
1.2 KiB

10 years ago
10 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. test100: build
  15. for i in {1..100}; do make test; done
  16. test_novendor: build
  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/... | sort | uniq | xargs go list -f '{{if not .Standard}}{{.ImportPath}}{{end}}'
  24. get_deps:
  25. go get -d github.com/tendermint/tendermint/...
  26. go list -f '{{join .TestImports "\n"}}' github.com/tendermint/tendermint/... | sort | uniq | xargs go get
  27. update_deps:
  28. go get -d -u github.com/tendermint/tendermint/...
  29. revision:
  30. -echo `git rev-parse --verify HEAD` > $(TMROOT)/revision
  31. -echo `git rev-parse --verify HEAD` >> $(TMROOT)/revision_history