Skip to content

Instantly share code, notes, and snippets.

@heysamtexas
Created March 24, 2017 22:24
Show Gist options
  • Save heysamtexas/7df2cbf694d7ea34a5cc534ff884525b to your computer and use it in GitHub Desktop.
Save heysamtexas/7df2cbf694d7ea34a5cc534ff884525b to your computer and use it in GitHub Desktop.
Default help command for Makefile
###############################################################################
# HELP / DEFAULT COMMAND
###############################################################################
.PHONY: help
help:
@awk 'BEGIN {FS = ":.*?## "} /^[a-zA-Z_-]+:.*?## / {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}' $(MAKEFILE_LIST)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment