GOTOOLS = \
|
|
github.com/Masterminds/glide \
|
|
github.com/jteeuwen/go-bindata/go-bindata
|
|
# gopkg.in/alecthomas/gometalinter.v2 \
|
|
#
|
|
GOTOOLS_CHECK = glide go-bindata #gometalinter.v2
|
|
|
|
all: check get_vendor_deps build test install
|
|
|
|
check: check_tools
|
|
|
|
|
|
########################################
|
|
### Build
|
|
|
|
wordlist:
|
|
# Generating wordlist.go...
|
|
go-bindata -ignore ".*\.go" -o keys/words/wordlist/wordlist.go -pkg "wordlist" keys/words/wordlist/...
|
|
|
|
build: wordlist
|
|
# Nothing else to build!
|
|
|
|
install:
|
|
# Nothing to install!
|
|
|
|
|
|
########################################
|
|
### Tools & dependencies
|
|
|
|
check_tools:
|
|
@# https://stackoverflow.com/a/25668869
|
|
@echo "Found tools: $(foreach tool,$(GOTOOLS_CHECK),\
|
|
$(if $(shell which $(tool)),$(tool),$(error "No $(tool) in PATH")))"
|
|
|
|
get_tools:
|
|
@echo "--> Installing tools"
|
|
go get -u -v $(GOTOOLS)
|
|
#@gometalinter.v2 --install
|
|
|
|
update_tools:
|
|
@echo "--> Updating tools"
|
|
@go get -u $(GOTOOLS)
|
|
|
|
get_vendor_deps:
|
|
@rm -rf vendor/
|
|
@echo "--> Running glide install"
|
|
@glide install
|
|
|
|
|
|
########################################
|
|
### Testing
|
|
|
|
test:
|
|
go test -p 1 `glide novendor`
|
|
|
|
|
|
########################################
|
|
### Formatting, linting, and vetting
|
|
|
|
fmt:
|
|
@go fmt ./...
|
|
|
|
metalinter:
|
|
@echo "==> Running linter"
|
|
gometalinter.v2 --vendor --deadline=600s --disable-all \
|
|
--enable=maligned \
|
|
--enable=deadcode \
|
|
--enable=goconst \
|
|
--enable=goimports \
|
|
--enable=gosimple \
|
|
--enable=ineffassign \
|
|
--enable=megacheck \
|
|
--enable=misspell \
|
|
--enable=staticcheck \
|
|
--enable=safesql \
|
|
--enable=structcheck \
|
|
--enable=unconvert \
|
|
--enable=unused \
|
|
--enable=varcheck \
|
|
--enable=vetshadow \
|
|
./...
|
|
#--enable=gas \
|
|
#--enable=dupl \
|
|
#--enable=errcheck \
|
|
#--enable=gocyclo \
|
|
#--enable=golint \ <== comments on anything exported
|
|
#--enable=gotype \
|
|
#--enable=interfacer \
|
|
#--enable=unparam \
|
|
#--enable=vet \
|
|
|
|
metalinter_all:
|
|
protoc $(INCLUDE) --lint_out=. types/*.proto
|
|
gometalinter.v2 --vendor --deadline=600s --enable-all --disable=lll ./...
|
|
|
|
|
|
# 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
|
|
.PHONEY: check wordlist build install check_tools get_tools update_tools get_vendor_deps test fmt metalinter metalinter_all
|