12 lines
186 B
Makefile
12 lines
186 B
Makefile
# list all recipes
|
|
default:
|
|
just --list --unsorted
|
|
|
|
# make the pdf
|
|
pdf:
|
|
groff -Tpdf -me -t -p -g duck.me > duck.pdf
|
|
|
|
# watch for changes
|
|
watch:
|
|
ls duck.me duck.grn | entr just pdf
|