Files
ccn/Makefile
T

14 lines
458 B
Makefile
Raw Normal View History

# Template root Makefile — bootstrap convenience only.
# This file is removed by `Tools/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}'