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.

18 lines
301 B

  1. .PHONY: all test get_vendor_deps ensure_tools
  2. GOTOOLS = \
  3. github.com/Masterminds/glide
  4. REPO:=github.com/tendermint/tmlibs
  5. all: test
  6. test:
  7. go test `glide novendor`
  8. get_vendor_deps: ensure_tools
  9. @rm -rf vendor/
  10. @echo "--> Running glide install"
  11. @glide install
  12. ensure_tools:
  13. go get $(GOTOOLS)