cosmos-sdk/Makefile
2016-02-05 23:16:33 -08:00

16 lines
275 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/blackstar/cmd/...
test:
go test github.com/tendermint/blackstar/...
get_deps:
go get -d github.com/tendermint/blackstar/...