13 lines
321 B
Makefile
13 lines
321 B
Makefile
|
# Local Variables:
|
||
|
# mode: makefile
|
||
|
# End:
|
||
|
gallery_dir := "./gallery"
|
||
|
set shell := ["bash", "-uc"]
|
||
|
|
||
|
manual:
|
||
|
typst c manual.typ manual.pdf
|
||
|
|
||
|
gallery:
|
||
|
for f in "{{gallery_dir}}"/*.typ; do typst c --root . "$f" "${f/typ/pdf}"; done
|
||
|
for f in "{{gallery_dir}}"/example*.typ; do typst c --root . "$f" "${f/typ/png}"; done
|