filelogger -> stdinwriter

This commit is contained in:
Jae Kwon
2015-07-08 13:07:05 -07:00
parent e0c7947544
commit 0a8fb72a08
5 changed files with 15 additions and 15 deletions
+3 -3
View File
@@ -6,19 +6,19 @@ install:
go install github.com/tendermint/tendermint/cmd/tendermint
go install github.com/tendermint/tendermint/cmd/barak
go install github.com/tendermint/tendermint/cmd/debora
go install github.com/tendermint/tendermint/cmd/filelogger
go install github.com/tendermint/tendermint/cmd/stdinwriter
build:
go build -o build/tendermint github.com/tendermint/tendermint/cmd/tendermint
go build -o build/barak github.com/tendermint/tendermint/cmd/barak
go build -o build/debora github.com/tendermint/tendermint/cmd/debora
go build -o build/filelogger github.com/tendermint/tendermint/cmd/filelogger
go build -o build/stdinwriter github.com/tendermint/tendermint/cmd/stdinwriter
build_race:
go build -race -o build/tendermint github.com/tendermint/tendermint/cmd/tendermint
go build -race -o build/barak github.com/tendermint/tendermint/cmd/barak
go build -race -o build/debora github.com/tendermint/tendermint/cmd/debora
go build -race -o build/filelogger github.com/tendermint/tendermint/cmd/filelogger
go build -race -o build/stdinwriter github.com/tendermint/tendermint/cmd/stdinwriter
test: build
go test github.com/tendermint/tendermint/...