forked from essentialkaos/slacker
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
31 lines (21 loc) · 975 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
################################################################################
# This Makefile generated by GoMakeGen 0.7.0 using next command:
# gomakegen .
################################################################################
.DEFAULT_GOAL := help
.PHONY = fmt deps deps-test test help
################################################################################
deps: ## Download dependencies
go get -d -v github.com/gorilla/websocket
deps-test: ## Download dependencies for tests
go get -d -v github.com/stretchr/testify
test: ## Run tests
go test -covermode=count .
fmt: ## Format source code with gofmt
find . -name "*.go" -exec gofmt -s -w {} \;
help: ## Show this info
@echo -e '\nSupported targets:\n'
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) \
| awk 'BEGIN {FS = ":.*?## "}; {printf " \033[33m%-12s\033[0m %s\n", $$1, $$2}'
@echo -e ''
################################################################################