Skip to content

Instantly share code, notes, and snippets.

@hobroker
Created December 11, 2021 20:34
Show Gist options
  • Save hobroker/e718a7be4245857660e84d4095d85cef to your computer and use it in GitHub Desktop.
Save hobroker/e718a7be4245857660e84d4095d85cef to your computer and use it in GitHub Desktop.
Makefile with help command
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