mirror of
https://github.com/jesseduffield/lazygit.git
synced 2024-12-12 11:15:00 +02:00
da3b0bf7c8
switch to other fuzzy package with no dependencies
58 lines
1.1 KiB
Makefile
58 lines
1.1 KiB
Makefile
.PHONY: all
|
|
all: setup lint test
|
|
|
|
.PHONY: test
|
|
test: setup
|
|
go test -bench ./...
|
|
|
|
.PHONY: cover
|
|
cover: setup
|
|
mkdir -p coverage
|
|
gocov test ./... | gocov-html > coverage/coverage.html
|
|
|
|
sources = $(shell find . -name '*.go' -not -path './vendor/*')
|
|
.PHONY: goimports
|
|
goimports: setup
|
|
goimports -w $(sources)
|
|
|
|
.PHONY: lint
|
|
lint: setup
|
|
gometalinter ./... --enable=goimports --disable=gocyclo --vendor -t
|
|
|
|
.PHONY: install
|
|
install: setup
|
|
go install
|
|
|
|
BIN_DIR := $(GOPATH)/bin
|
|
GOIMPORTS := $(BIN_DIR)/goimports
|
|
GOMETALINTER := $(BIN_DIR)/gometalinter
|
|
DEP := $(BIN_DIR)/dep
|
|
GOCOV := $(BIN_DIR)/gocov
|
|
GOCOV_HTML := $(BIN_DIR)/gocov-html
|
|
|
|
$(GOIMPORTS):
|
|
go get -u golang.org/x/tools/cmd/goimports
|
|
|
|
$(GOMETALINTER):
|
|
go get -u github.com/alecthomas/gometalinter
|
|
gometalinter --install &> /dev/null
|
|
|
|
$(GOCOV):
|
|
go get -u github.com/axw/gocov/gocov
|
|
|
|
$(GOCOV_HTML):
|
|
go get -u gopkg.in/matm/v1/gocov-html
|
|
|
|
$(DEP):
|
|
go get -u github.com/golang/dep/cmd/dep
|
|
|
|
tools: $(GOIMPORTS) $(GOMETALINTER) $(GOCOV) $(GOCOV_HTML) $(DEP)
|
|
|
|
vendor: $(DEP)
|
|
dep ensure
|
|
|
|
setup: tools vendor
|
|
|
|
updatedeps:
|
|
dep ensure -update
|