RPC refactor to separate core from core_client and the rest of RPC.

Other random changes.
This commit is contained in:
Jae Kwon
2015-04-07 11:44:25 -07:00
parent f271ab7256
commit cc18136af8
27 changed files with 1015 additions and 414 deletions
+4 -2
View File
@@ -3,10 +3,12 @@
all: build
build: get_deps
go build -o tendermint github.com/tendermint/tendermint/cmd
go build -o tendermint github.com/tendermint/tendermint/cmd/tendermint
go build -o debora github.com/tendermint/tendermint/cmd/debora
build_race: get_deps
go build -race -o tendermint github.com/tendermint/tendermint/cmd
go build -race -o tendermint github.com/tendermint/tendermint/cmd/tendermint
go build -race -o debora github.com/tendermint/tendermint/cmd/debora
test: build
go test github.com/tendermint/tendermint/...