Makefile: add 'build' target

This commit is contained in:
Tzu-Jung Lee 2017-01-16 22:33:48 -08:00
parent aae3c91e88
commit c65bb21a51
1 changed files with 4 additions and 1 deletions

View File

@ -1,4 +1,4 @@
.PHONY: all test fmt lint get_deps
.PHONY: all build test fmt lint get_deps
all: protoc install test
@ -10,6 +10,9 @@ protoc:
install:
@ go install github.com/tendermint/abci/cmd/...
build:
@ go build -i github.com/tendermint/abci/cmd/...
test:
@ go test `${NOVENDOR}`
@ bash tests/test.sh