tendermint/Makefile

17 lines
280 B
Makefile
Raw Normal View History

2015-12-17 13:46:04 -08:00
.PHONY: all test get_deps
2016-01-30 19:36:33 -08:00
all: protoc test install
protoc:
protoc --go_out=. types/*.proto
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/...
2016-07-23 15:54:58 -07:00
bash tests/test.sh
2015-12-17 13:46:04 -08:00
get_deps:
go get -d github.com/tendermint/tmsp/...