Skip to content

Instantly share code, notes, and snippets.

@porn
Created August 2, 2016 06:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save porn/50166b1d3d554c916688ea44c4b82156 to your computer and use it in GitHub Desktop.
Save porn/50166b1d3d554c916688ea44c4b82156 to your computer and use it in GitHub Desktop.
Makefile with help
# print help
help: ## list available targets (this page)
@awk 'BEGIN {FS = ":.*?## "} /^[0-9a-zA-Z_-]+:.*?## / {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}' $(MAKEFILE_LIST)
clean:: ## clean all compiled files
find . -name '*.pyc' -delete
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment