mirror of
https://forge.katzen.cafe/katzen-cafe/iowo.git
synced 2024-11-21 21:24:41 +01:00
6 lines
195 B
Makefile
6 lines
195 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
|