14 lines
317 B
Makefile
14 lines
317 B
Makefile
presentation.pdf: presentation.typ template
|
|
typst compile --font-path template/fonts $< $@
|
|
|
|
.INTERMEDIATE: tultemplate2_minimal.zip
|
|
tultemplate2_minimal.zip:
|
|
wget https://tulsablona.zumepro.cz/tultemplate2_minimal.zip
|
|
|
|
template: tultemplate2_minimal.zip
|
|
unzip $<
|
|
|
|
.PHONY: clean
|
|
clean:
|
|
rm -rf template *.pdf *.zip
|