Browse Source

Add Makefile

pull/1780/head
Jae Kwon 9 years ago
parent
commit
4b67e9e9d2
1 changed files with 12 additions and 0 deletions
  1. +12
    -0
      Makefile

+ 12
- 0
Makefile View File

@ -0,0 +1,12 @@
.PHONY: all test get_deps
all: test get_deps install
install:
go install github.com/tendermint/tmsp/cmd/...
test:
go test github.com/tendermint/tmsp/...
get_deps:
go get -d github.com/tendermint/tmsp/...

Loading…
Cancel
Save