Add Makefile

This commit is contained in:
Jae Kwon 2015-12-17 13:46:04 -08:00
parent 035966d273
commit 4b67e9e9d2
1 changed files with 12 additions and 0 deletions

12
Makefile Normal file
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/...