summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile13
1 files changed, 9 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 34b633b..b17eeaf 100644
--- a/Makefile
+++ b/Makefile
@@ -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