mirror of
https://github.com/fluencelabs/tendermint
synced 2025-04-25 06:42:16 +00:00
Making is more fancy
This commit is contained in:
parent
bfe472987f
commit
a78d9c2b59
11
Makefile
11
Makefile
@ -1,12 +1,14 @@
|
||||
.PHONY: get_deps build all list_deps
|
||||
|
||||
all: build
|
||||
|
||||
build:
|
||||
build: get_deps
|
||||
go build -o tendermint github.com/tendermint/tendermint/cmd
|
||||
|
||||
build_race:
|
||||
build_race: get_deps
|
||||
go build -race -o tendermint github.com/tendermint/tendermint/cmd
|
||||
|
||||
test:
|
||||
test: build
|
||||
go test github.com/tendermint/tendermint/...
|
||||
|
||||
list_deps:
|
||||
@ -14,3 +16,6 @@ list_deps:
|
||||
|
||||
get_deps:
|
||||
go get github.com/tendermint/tendermint/...
|
||||
|
||||
clean:
|
||||
rm -f tendermint
|
||||
|
Loading…
x
Reference in New Issue
Block a user