go-prompt/Makefile

42 lines
1.2 KiB
Makefile
Raw Normal View History

2017-07-03 15:52:39 +00:00
.DEFAULT_GOAL := help
2017-07-17 20:25:06 +00:00
.PHONY: setup
2017-07-03 15:52:39 +00:00
setup: ## Setup for required tools.
go get -u golang.org/x/lint/golint
go get -u golang.org/x/tools/cmd/goimports
go get -u golang.org/x/tools/cmd/stringer
2018-02-12 16:11:54 +00:00
go get -u github.com/golang/dep/cmd/dep
dep ensure
2017-07-03 15:52:39 +00:00
2017-07-17 20:25:06 +00:00
.PHONY: fmt
2017-07-03 15:52:39 +00:00
fmt: ## Formatting source codes.
@goimports -w $(find . -type f -name '*.go' -not -path "./vendor/*")
2017-07-03 15:52:39 +00:00
2017-07-17 20:25:06 +00:00
.PHONY: lint
2017-07-03 15:52:39 +00:00
lint: ## Run golint and go vet.
2017-07-17 20:32:25 +00:00
@golint .
@golint -set_exit_status=1
2017-07-17 20:32:25 +00:00
@go vet .
2017-07-03 15:52:39 +00:00
2017-07-17 20:25:06 +00:00
.PHONY: test
test: ## Run the tests with race condition checking.
@go test -race .
2017-07-03 15:52:39 +00:00
2018-02-15 09:15:32 +00:00
.PHONY: coverage
cover: ## Run the tests.
@go test -coverprofile=coverage.o
@go tool cover -func=coverage.o
.PHONY: build
build: ## Build example command lines.
go build -o bin/exec-command ./_example/exec-command/main.go
go build -o bin/http-prompt ./_example/http-prompt/main.go
go build -o bin/live-prefix ./_example/live-prefix/main.go
go build -o bin/simple-echo ./_example/simple-echo/main.go
go build -o bin/simple-echo-cjk-cyrillic ./_example/simple-echo/cjk-cyrillic/main.go
2017-07-17 20:25:06 +00:00
.PHONY: help
2017-07-03 15:52:39 +00:00
help: ## Show help text
@echo "Commands:"
2017-07-17 20:25:06 +00:00
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | awk 'BEGIN {FS = ":.*?## "}; {printf " \033[36m%-10s\033[0m %s\n", $$1, $$2}'