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.

83 lines
2.1 KiB

7 years ago
7 years ago
8 years ago
8 years ago
  1. GOTOOLS = \
  2. github.com/mitchellh/gox \
  3. github.com/tcnksm/ghr \
  4. github.com/Masterminds/glide \
  5. PACKAGES=$(shell go list ./... | grep -v '/vendor/')
  6. BUILD_TAGS?=tendermint
  7. TMHOME = $${TMHOME:-$$HOME/.tendermint}
  8. all: install test
  9. install: get_vendor_deps
  10. @go install --ldflags '-extldflags "-static"' \
  11. --ldflags "-X github.com/tendermint/tendermint/version.GitCommit=`git rev-parse HEAD`" ./cmd/tendermint
  12. build:
  13. go build \
  14. --ldflags "-X github.com/tendermint/tendermint/version.GitCommit=`git rev-parse HEAD`" -o build/tendermint ./cmd/tendermint/
  15. build_race:
  16. go build -race -o build/tendermint ./cmd/tendermint
  17. # dist builds binaries for all platforms and packages them for distribution
  18. dist:
  19. @BUILD_TAGS='$(BUILD_TAGS)' sh -c "'$(CURDIR)/scripts/dist.sh'"
  20. test:
  21. @echo "--> Running go test"
  22. @go test $(PACKAGES)
  23. test_race:
  24. @echo "--> Running go test --race"
  25. @go test -v -race $(PACKAGES)
  26. test_integrations:
  27. @bash ./test/test.sh
  28. test100:
  29. @for i in {1..100}; do make test; done
  30. draw_deps:
  31. # requires brew install graphviz or apt-get install graphviz
  32. go get github.com/RobotsAndPencils/goviz
  33. @goviz -i github.com/tendermint/tendermint/cmd/tendermint -d 3 | dot -Tpng -o dependency-graph.png
  34. list_deps:
  35. @go list -f '{{join .Deps "\n"}}' ./... | \
  36. grep -v /vendor/ | sort | uniq | \
  37. xargs go list -f '{{if not .Standard}}{{.ImportPath}}{{end}}'
  38. get_deps:
  39. @echo "--> Running go get"
  40. @go get -v -d $(PACKAGES)
  41. @go list -f '{{join .TestImports "\n"}}' ./... | \
  42. grep -v /vendor/ | sort | uniq | \
  43. xargs go get -v -d
  44. get_vendor_deps: ensure_tools
  45. @rm -rf vendor/
  46. @echo "--> Running glide install"
  47. @glide install
  48. update_deps: tools
  49. @echo "--> Updating dependencies"
  50. @go get -d -u ./...
  51. revision:
  52. -echo `git rev-parse --verify HEAD` > $(TMHOME)/revision
  53. -echo `git rev-parse --verify HEAD` >> $(TMHOME)/revision_history
  54. tools:
  55. go get -u -v $(GOTOOLS)
  56. ensure_tools:
  57. go get $(GOTOOLS)
  58. ### Formatting, linting, and vetting
  59. megacheck:
  60. @for pkg in ${PACKAGES}; do megacheck "$$pkg"; done
  61. .PHONY: install build build_race dist test test_race test_integrations test100 draw_deps list_deps get_deps get_vendor_deps update_deps revision tools