Created
July 8, 2023 21:30
-
-
Save neverkas/44124f7d0606bc5942615665b23ac95b to your computer and use it in GitHub Desktop.
Makefile Menu Helper
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
# 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