cosmos-sdk/Makefile

13 lines
223 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
2016-02-16 12:29:54 -08:00
go install github.com/tendermint/basecoin/cmd/...
2016-02-05 23:16:33 -08:00
test:
2016-02-16 12:29:54 -08:00
go test github.com/tendermint/basecoin/...
2016-02-05 23:16:33 -08:00
get_deps:
2016-02-16 12:29:54 -08:00
go get -d github.com/tendermint/basecoin/...