Skip to content

Instantly share code, notes, and snippets.

@hayajo
Last active June 9, 2023 02:29
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 hayajo/cde4803cc5199f69668f821511d15b69 to your computer and use it in GitHub Desktop.
Save hayajo/cde4803cc5199f69668f821511d15b69 to your computer and use it in GitHub Desktop.
Makefile で help を実装する
NAME ?= world
.PHONY: help
help: ## show help
@echo "Usage:"
@awk -F':.*##' '/^[-_a-zA-Z0-9]+:.*##/{printf"%-12s\t%s\n",$$1,$$2}' $(MAKEFILE_LIST) | sort
@echo ""
.PHONY: greeting
greeting: ## hello world
@echo "Hello $(NAME)!"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment