-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
51 lines (39 loc) · 917 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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
#!make
help: ## Display this help screen
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | \
awk 'BEGIN {FS = ":.*?## "}; \
{printf "%-14s %s\n", $$1, $$2}' | \
sort
dependencies: ## Install dependencies
@./dev/dependencies
code-fmt: ## Format bash files
@./dev/code-fmt
code-fmt-check: ## Check format of bash files
@./dev/code-fmt-check
code-lint: ## Run lint for bash files
@./dev/code-lint
symlink: ## Add symlink to scripts in path
@./dev/symlink
unsymlink: ## Remove symlink to scripts from path
@./dev/unsymlink
readme: ## Write README.md
@./dev/readme
@./wrk2/dev/readme
@./dstat/dev/readme
tests: ## Run tests
@./dev/tests
typos: ## Check typos
@typos
typos-fix: ## Fix typos
@typos -w
.PHONY: help
.PHONY: code-fmt
.PHONY: code-fmt-check
.PHONY: code-lint
.PHONY: dependencies
.PHONY: readme
.PHONY: symlink
.PHONY: tests
.PHONY: typos
.PHONY: typos-fix
.PHONY: unsymlink