22
23
24
25
26
27
28
29
30
31
|
22
23
24
25
26
27
28
29
30
31
32
33
34
|
+
+
+
-
+
|
fossil uv add scribbled/*
fossil uv sync
# Self-documenting makefile (http://marmelab.com/blog/2016/02/29/auto-documented-makefile.html)
help: ## Displays this help screen
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-15s\033[0m %s\n", $$1, $$2}'
article: ## Start a new article from a template
racket util/newpost.rkt
.PHONY: scribble help spritz
.PHONY: scribble help spritz article
.DEFAULT_GOAL := help
|