tendermint/Makefile

13 lines
211 B
Makefile
Raw Normal View History

2015-12-17 13:46:04 -08:00
.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/...