10 lines
130 B
Makefile
10 lines
130 B
Makefile
.PHONY: clean distclean
|
|
|
|
cviceni.pdf: $(wildcard *.tex)
|
|
latexmk -xelatex cviceni.tex
|
|
|
|
clean:
|
|
latexmk -c
|
|
|
|
distclean:
|
|
latexmk -C
|