Created
September 19, 2025 15:38
-
-
Save InTEGr8or/3120aeb5c6def26bf60037dcf4d044b3 to your computer and use it in GitHub Desktop.
My developing Makefile help header.
This file contains hidden or 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
| #!/usr/bin/env bash | |
| .PHONY: help | |
| help: ## Display this help screen | |
| @echo "Available commands:" | |
| @awk 'BEGIN {FS = ":.*?## "}; /^[a-zA-Z_-]+:.*?## / {printf " \033[32m%-20s\033[0m %s\n", $$1, $$2}' $(MAKEFILE_LIST) | |
| # ============================================================================== | |
| # Application Tasks | |
| # ============================================================================== |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment