blob: 1ca0edbb52fcce4b0224ce3b972e1a0bf9f99219 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
all:
latexmk -pvc -lualatex -shell-escape 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
|