Created
December 11, 2021 20:34
-
-
Save hobroker/e718a7be4245857660e84d4095d85cef to your computer and use it in GitHub Desktop.
Makefile with help command
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
help: ## Show this help message | |
@egrep '^(.+)\:\ ##\ (.+)' ${MAKEFILE_LIST} | column -t -c 2 -s ':#' | |
do-something: ## This command will do something | |
echo "something" | |
.PHONY: help |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment