mirror of
https://forge.katzen.cafe/katzen-cafe/iowo.git
synced 2024-12-22 10:05:52 +01:00
5 lines
195 B
Makefile
5 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
|