Files
tendermint/Makefile
2016-07-22 01:23:13 -04:00

17 lines
293 B
Makefile

.PHONY: all test get_deps
all: protoc test install
protoc:
protoc --go_out=. types/*.proto
install: get_deps
go install github.com/tendermint/tmsp/cmd/...
test:
go test github.com/tendermint/tmsp/...
bash tests/test_counter/test.sh
get_deps:
go get -d github.com/tendermint/tmsp/...