cosmos-sdk/Makefile

13 lines
226 B
Makefile
Raw Normal View History

2016-02-05 23:16:33 -08:00
.PHONY: all test get_deps
2016-02-08 15:01:26 -08:00
all: test install
2016-02-05 23:16:33 -08:00
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/...