Files
tendermint/Makefile

13 lines
211 B
Makefile
Raw Normal View History

2015-12-17 13:46:04 -08:00
.PHONY: all test get_deps
2016-01-09 19:05:41 -08:00
all: test install
2015-12-17 13:46:04 -08:00
2016-01-09 19:05:41 -08:00
install: get_deps
2015-12-17 13:46:04 -08:00
go install github.com/tendermint/tmsp/cmd/...
test:
go test github.com/tendermint/tmsp/...
get_deps:
go get -d github.com/tendermint/tmsp/...