move to latexmk for better compatibility

This commit is contained in:
Petr Velycko 2025-06-12 10:52:52 +02:00
parent 38cf3fa181
commit 6784e133c2
Signed by: petrvel
GPG key ID: E8F909AFE649174F
5 changed files with 18 additions and 6 deletions

6
.gitignore vendored Normal file
View file

@ -0,0 +1,6 @@
*.aux
*.fdb_latexmk
*.fls
*.log
*.out
*.xdv

View file

@ -1,7 +1,10 @@
.PHONY: clean
.PHONY: clean distclean
cviceni.pdf: $(wildcard *.tex)
tectonic cviceni.tex
latexmk -xelatex cviceni.tex
clean:
rm cviceni.pdf
latexmk -c
distclean:
latexmk -C

Binary file not shown.

View file

@ -1,7 +1,10 @@
.PHONY: clean
.PHONY: clean distclean
theory.pdf: $(wildcard *.tex)
tectonic theory.tex
latexmk -xelatex theory.tex
clean:
rm theory.pdf
latexmk -c
distclean:
latexmk -C

Binary file not shown.