-
Notifications
You must be signed in to change notification settings - Fork 54
/
Makefile
38 lines (31 loc) · 1.32 KB
/
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
# Copyright 2021 The MLX Contributors
#
# SPDX-License-Identifier: Apache-2.0
# Acknowledgements:
# - The help target was derived from https://stackoverflow.com/a/35730328/5601796
.PHONY: help
help: ## List the Make targets with description
@grep -E '^[0-9a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | \
awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-25s\033[0m %s\n", $$1, $$2}'
.PHONY: check_npm_packages
check_npm_packages: ## Verify NPM packages
@python3 tools/python/verify_npm_packages.py --verify
@echo "$@: OK"
.PHONY: update_npm_packages
update_npm_packages: ## Update NPM packages
@python3 tools/python/verify_npm_packages.py --update
@echo "$@: OK"
.PHONY: check_doc_links
check_doc_links: ## Check markdown files for invalid links
@pip3 show requests > /dev/null || pip3 install requests
@python3 tools/python/verify_doc_links.py
@echo "$@: OK"
.PHONY: update_doc_table
update_doc_table: ## Regenerate the /docs/README.md file
@python3 tools/python/update_doc_table.py
@echo "$@: OK"
.PHONY: check_license
check_license: ## Make sure source files have license header
@git grep -L "SPDX-License-Identifier: Apache-2.0" -- *.py *.yml *.yaml *.sh *.html *.js *.css *.ts *.tsx ':!*.bundle.js' | \
grep . && echo "Missing license headers in files above. Run './tools/bash/add_license_headers.sh'" && exit 1 || \
echo "$@: OK"