Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Make order be decided first; Remove TMSP Commit/Rollback #176

Merged
merged 5 commits into from
Jan 12, 2016
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fixing Makefile to get_deps before install
  • Loading branch information
jaekwon committed Jan 10, 2016
commit 37bb8868de777512c4163f9fbca58f785550580a
6 changes: 3 additions & 3 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
.PHONY: get_deps build all list_deps install

all: install
all: test install

TMROOT = $${TMROOT:-$$HOME/.tendermint}

install:
install: get_deps
go install github.com/tendermint/tendermint/cmd/tendermint

build:
Expand Down Expand Up @@ -32,7 +32,7 @@ list_deps:
go list -f '{{join .Deps "\n"}}' github.com/tendermint/tendermint/... | xargs go list -f '{{if not .Standard}}{{.ImportPath}}{{end}}'

get_deps:
go get github.com/tendermint/tendermint/...
go get -d github.com/tendermint/tendermint/...

revision:
-echo `git rev-parse --verify HEAD` > $(TMROOT)/revision
Expand Down