Skip to content

Instantly share code, notes, and snippets.

@oppara
Last active December 20, 2019 04:55
Show Gist options
  • Save oppara/8e96f56b5ebce199181dbf1c553292fa to your computer and use it in GitHub Desktop.
Save oppara/8e96f56b5ebce199181dbf1c553292fa to your computer and use it in GitHub Desktop.
makeでhelp
.PHONY: help foo
foo: ## description
@ehco foo
help:
@grep -E '^[a-zA-Z_0-9-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-30s\033[0m %s\n", $$1, $$2}'
@oppara
Copy link
Author

oppara commented Dec 19, 2019

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment