Created
May 21, 2024 16:04
-
-
Save asaaki/61a1cd0a8b1d24dbb5f536afc72014fb to your computer and use it in GitHub Desktop.
Makefile help
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
hello: ## sends greetings | |
@echo "Hello!" | |
help: ## prints the help | |
@echo "# Makefile Help #" | |
@grep -E '^[a-zA-Z0-9_-]+:.*##' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":([^:])*?## "}; {split($$1,m,/:/); if (!m[2]) m[2]=$$1; printf "\033[36m%-30s\033[0m %s\n", m[2], $$2}' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment