-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathMakefile
More file actions
26 lines (21 loc) · 747 Bytes
/
Makefile
File metadata and controls
26 lines (21 loc) · 747 Bytes
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
.PHONY: check-doc-links
## Verify URL links in Markdown files
check-doc-links:
@python3 scripts/python/verify-doc-links.py && echo "$@: OK"
.PHONY: list-contributors
## List top contributors
list-contributors:
@python3 scripts/python/list-contributors.py -n 10
.PHONY: list-pr-reviewers
## List top PR reviewers
list-pr-reviewers:
@python3 scripts/python/list-contributors.py -r reviewer commenter -n 5
.PHONY: list-pr-authors
## List top PR authors
list-pr-authors:
@python3 scripts/python/list-contributors.py -r author -n 5
.DEFAULT_GOAL := help
.PHONY: help
## Print Makefile documentation
help:
@perl -0 -nle 'printf("\033[36m %-20s\033[0m %s\n", "$$2", "$$1") while m/^##\s*([^\r\n]+)\n^([\w.-]+):[^=]/gm' $(MAKEFILE_LIST) | sort