From c65bb21a51c53bc2566a1eea95473e3c915c6c7b Mon Sep 17 00:00:00 2001 From: Tzu-Jung Lee Date: Mon, 16 Jan 2017 22:33:48 -0800 Subject: [PATCH] Makefile: add 'build' target --- Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 9e703971..45d0450a 100644 --- a/Makefile +++ b/Makefile @@ -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