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
300 B

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