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.

15 lines
260 B

9 years ago
9 years ago
9 years ago
  1. .PHONY: all test get_deps
  2. all: protoc test install
  3. protoc:
  4. protoc --go_out=. types/*.proto
  5. install: get_deps
  6. go install github.com/tendermint/tmsp/cmd/...
  7. test:
  8. go test github.com/tendermint/tmsp/...
  9. get_deps:
  10. go get -d github.com/tendermint/tmsp/...