blob: 7faec7d6c494e1937abe3b7a0f089c54f8d9e5c5 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
all:
latexmk -pvc -lualatex tfm.tex
once:
lualatex tfm.tex
force:
latexmk -pvc -lualatex -interaction=nonstopmode tfm.tex
re: clean all
clean:
rm -rf _region_.tex *.aux *.bbl *.blg *.brf *.dvi *.fdb_latexmk *.fls *.fmt *.idx *.log *.lol *.out *.prv *.toc *.pyg
.PHONY : all clean re
|