tendermint/Makefile

17 lines
417 B
Makefile
Raw Normal View History

2014-12-28 16:26:53 -08:00
all: build
build:
go build -o tendermint github.com/tendermint/tendermint/cmd
2014-12-28 17:10:03 -08:00
build_race:
go build -race -o tendermint github.com/tendermint/tendermint/cmd
2014-12-28 16:26:53 -08:00
test:
go test github.com/tendermint/tendermint/...
list_deps:
go list -f '{{join .Deps "\n"}}' github.com/tendermint/tendermint/... | xargs go list -f '{{if not .Standard}}{{.ImportPath}}{{end}}'
get_deps:
go get github.com/tendermint/tendermint/...