12 lines
186 B
Plaintext
12 lines
186 B
Plaintext
|
# 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
|