Making is more fancy

This commit is contained in:
Matthew Wampler-Doty 2015-03-16 03:51:24 -07:00
parent bfe472987f
commit a78d9c2b59

View File

@ -1,12 +1,14 @@
.PHONY: get_deps build all list_deps
all: build all: build
build: build: get_deps
go build -o tendermint github.com/tendermint/tendermint/cmd go build -o tendermint github.com/tendermint/tendermint/cmd
build_race: build_race: get_deps
go build -race -o tendermint github.com/tendermint/tendermint/cmd go build -race -o tendermint github.com/tendermint/tendermint/cmd
test: test: build
go test github.com/tendermint/tendermint/... go test github.com/tendermint/tendermint/...
list_deps: list_deps:
@ -14,3 +16,6 @@ list_deps:
get_deps: get_deps:
go get github.com/tendermint/tendermint/... go get github.com/tendermint/tendermint/...
clean:
rm -f tendermint