forked from cosmos/cosmos-sdk
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request cosmos#515 from cosmos/bugfix/remove-basecoin-extr…
…a-vendor Remove errant basecoin vendor mess
- Loading branch information
Showing
3 changed files
with
3 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,15 @@ | ||
PACKAGES=$(shell go list ./... | grep -v '/vendor/') | ||
BUILD_FLAGS = -ldflags "-X github.com/cosmos/cosmos-sdk/examples/basecoin/version.GitCommit=`git rev-parse --short HEAD`" | ||
|
||
all: get_tools get_vendor_deps build test | ||
|
||
get_tools: | ||
go get github.com/tendermint/glide | ||
all: build test | ||
|
||
build: | ||
go build $(BUILD_FLAGS) -o build/basecoin ./cmd/... | ||
|
||
get_vendor_deps: | ||
@rm -rf vendor/ | ||
@glide install | ||
|
||
test: | ||
@go test $(PACKAGES) | ||
|
||
benchmark: | ||
@go test -bench=. $(PACKAGES) | ||
|
||
.PHONY: get_tools build get_vendor_deps test benchmark | ||
.PHONY: all build test benchmark |
This file was deleted.
Oops, something went wrong.