summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorGuillermo Ramos2015-07-16 02:30:55 +0200
committerGuillermo Ramos2015-07-16 02:36:08 +0200
commit2309cd1259cf29cb24e977a29533d46a42ca8162 (patch)
treebbe069739b257ec7eb70a39366581d5bc415ba6b /Makefile
parent40cf6d0a630c12c52ba9a115dff3e67cea63a31e (diff)
downloadtfm-2309cd1259cf29cb24e977a29533d46a42ca8162.tar.gz
LuaTeX. Makefile over 9000.
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