summaryrefslogtreecommitdiff
path: root/Makefile
blob: 3e0dba04e999a7c9531fecce99a07bcaf89dd519 (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 _minted-tfm *.aux *.bbl *.blg *.brf *.dvi *.fdb_latexmk *.fls *.fmt *.idx *.log *.lol *.out *.prv *.toc *.pyg

.PHONY : all clean re