Previously, the install scripts weren't installing golint and gometalinter. This commit fixes this, and installs tendermints linter, and the HEAD of the gometalinter repository. Now make all should work.
83 lines
2.1 KiB
Makefile
83 lines
2.1 KiB
Makefile
all: install
|
|
|
|
|
|
########################################
|
|
### DEP
|
|
|
|
DEP = github.com/golang/dep/cmd/dep
|
|
GOLINT = github.com/tendermint/lint/golint
|
|
GOMETALINTER = github.com/alecthomas/gometalinter
|
|
DEP_CHECK := $(shell command -v dep 2> /dev/null)
|
|
GOLINT_CHECK := $(shell command -v golint 2> /dev/null)
|
|
GOMETALINTER_CHECK := $(shell command -v gometalinter 2> /dev/null)
|
|
|
|
check_tools:
|
|
ifndef DEP_CHECK
|
|
@echo "No dep in path. Install with 'make get_tools'."
|
|
else
|
|
@echo "Found dep in path."
|
|
endif
|
|
ifndef GOLINT_CHECK
|
|
@echo "No golint in path. Install with 'make get_tools'."
|
|
else
|
|
@echo "Found golint in path."
|
|
endif
|
|
ifndef GOMETALINTER_CHECK
|
|
@echo "No gometalinter in path. Install with 'make get_tools'."
|
|
else
|
|
@echo "Found gometalinter in path."
|
|
endif
|
|
|
|
get_tools:
|
|
ifdef DEP_CHECK
|
|
@echo "Dep is already installed. Run 'make update_tools' to update."
|
|
else
|
|
@echo "Installing dep"
|
|
go get -v $(DEP)
|
|
endif
|
|
ifdef GOLINT_CHECK
|
|
@echo "Golint is already installed. Run 'make update_tools' to update."
|
|
else
|
|
@echo "Installing golint"
|
|
go get -v $(GOLINT)
|
|
endif
|
|
ifdef GOMETALINTER_CHECK
|
|
@echo "Gometalinter is already installed. Run 'make update_tools' to update."
|
|
else
|
|
@echo "Installing gometalinter"
|
|
go get -v $(GOMETALINTER)
|
|
endif
|
|
|
|
update_tools:
|
|
@echo "Updating dep"
|
|
go get -u -v $(DEP)
|
|
@echo "Updating tendermint/golint"
|
|
go get -u -v $(GOLINT)
|
|
@echo "Updating gometalinter"
|
|
go get -u -v $(GOMETALINTER)
|
|
|
|
|
|
########################################
|
|
### Install tools
|
|
|
|
|
|
get_vendor_deps: check_tools
|
|
@rm -rf vendor/
|
|
@echo "--> Running dep ensure"
|
|
@dep ensure -v
|
|
|
|
install: get_vendor_deps
|
|
@echo "Installing tools"
|
|
@echo "Install go-vendorinstall"
|
|
go build -o bin/go-vendorinstall go-vendorinstall/*.go
|
|
|
|
@echo "Install gometalinter.v2"
|
|
GOBIN="$(CURDIR)/bin" ./bin/go-vendorinstall github.com/alecthomas/gometalinter
|
|
|
|
@echo "Done installing tools"
|
|
|
|
# To avoid unintended conflicts with file names, always add to .PHONY
|
|
# unless there is a reason not to.
|
|
# https://www.gnu.org/software/make/manual/html_node/Phony-Targets.html
|
|
.PHONY: check_tools install_tools update_tools get_vendor_deps install
|