Browse Source

Makefile: add 'build' target

pull/1780/head
Tzu-Jung Lee 8 years ago
parent
commit
c65bb21a51
1 changed files with 4 additions and 1 deletions
  1. +4
    -1
      Makefile

+ 4
- 1
Makefile 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


Loading…
Cancel
Save