mirror of
https://forge.katzen.cafe/katzen-cafe/iowo.git
synced 2024-11-05 15:26:24 +01:00
7 lines
196 B
Makefile
7 lines
196 B
Makefile
docs:
|
|
for doc in $(fd '.typ' './docs' --exclude 'template*' --exclude 'util*'); do \
|
|
typst compile $doc --root=docs; \
|
|
mv "$(dirname $doc)/$(basename $doc .typ).pdf" docs/compiled/; \
|
|
done
|
|
|