diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 13 |
1 files changed, 9 insertions, 4 deletions
@@ -1,10 +1,15 @@ all: - latexmk -shell-escape -pvc --pdf -interaction=nonstopmode memoria.tex + latexmk -pvc -lualatex memoria.tex -bare: - pdflatex -shell-escape memoria.tex +once: + lualatex memoria.tex + +force: + latexmk -pvc -lualatex -interaction=nonstopmode memoria.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 +.PHONY : all clean re |