-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathmakefile
More file actions
17 lines (12 loc) · 716 Bytes
/
makefile
File metadata and controls
17 lines (12 loc) · 716 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
CURRENT_DIR = ${CURDIR}
default: help
# --------------------------------------------------------------------------------------------------
# Global
# --------------------------------------------------------------------------------------------------
prettier: ## Run [Prettier](https://prettier.io/)
cd $(CURRENT_DIR); yarn prettier;
# --------------------------------------------------------------------------------------------------
# Misc
# --------------------------------------------------------------------------------------------------
help: ## Display a list of commands
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'