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.

22 lines
346 B

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