Last active
December 20, 2019 04:55
-
-
Save oppara/8e96f56b5ebce199181dbf1c553292fa to your computer and use it in GitHub Desktop.
makeでhelp
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
.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}' |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Makefileを自己文書化する | POSTD