Skip to content

Instantly share code, notes, and snippets.

@kshitij10496
Last active March 25, 2021 15:00
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kshitij10496/e8941a08d5dae8f41fbbf776f55d4ff2 to your computer and use it in GitHub Desktop.
Save kshitij10496/e8941a08d5dae8f41fbbf776f55d4ff2 to your computer and use it in GitHub Desktop.
Minimalistic help recipe for Makefiles
.PHONY: help
help: ## Show this help.
@echo "Targets:"
@grep -E '^[a-zA-Z\/_-]*:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\t%-20s: %s\n", $$1, $$2}'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment