14 lines
460 B
Makefile
14 lines
460 B
Makefile
# Template root Makefile — bootstrap convenience only.
|
|
# This file is removed by `Scripts/bootstrap` once the template is generated.
|
|
|
|
.DEFAULT_GOAL := help
|
|
|
|
.PHONY: bootstrap
|
|
bootstrap: ## Generate a concrete website from this template (interactive)
|
|
@./Scripts/bootstrap
|
|
|
|
.PHONY: help
|
|
help: ## Show available commands
|
|
@grep -hE '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) \
|
|
| awk 'BEGIN {FS = ":.*?## "}; {printf " \033[36m%-12s\033[0m %s\n", $$1, $$2}'
|