Skip to content

Instantly share code, notes, and snippets.

@neverkas
Created July 8, 2023 21:30
Show Gist options
  • Save neverkas/44124f7d0606bc5942615665b23ac95b to your computer and use it in GitHub Desktop.
Save neverkas/44124f7d0606bc5942615665b23ac95b to your computer and use it in GitHub Desktop.
Makefile Menu Helper
# Nota: agregar en el Makefile principal: include helper.mk
.DEFAULT_GOAL=help
##@ Utilidades
h help: ## Mostrar menú de ayuda
@awk 'BEGIN {FS = ":.*##"; printf "\nOpciones para usar:\n make \033[36m\033[0m\n"} /^[$$()% 0-9a-zA-Z_-]+:.*?##/ { printf " \033[36m%-15s\033[0m %s\n", $$1, $$2 } /^##@/ { printf "\n\033[1m%s\033[0m\n", substr($$0, 5) } ' $(MAKEFILE_LIST)
.PHONY: h help
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment