From 300d0f892506fda9c4bfa706ebee2e1fc3cc4fb7 Mon Sep 17 00:00:00 2001 From: Holger Dengler Date: Sat, 28 Jul 2018 20:13:47 +0200 Subject: build: use xelatex as latex build-command Although the commandline of latexmk specifies xelatex as a sub-command, the commandline parameter "-pdf" enforces the usage of pdflatex instead. Without this parameter, latexmk correctly uses xelatex as latex build-command. Also add the additional, xelatex-specific, temporary files to the clean target and .gitignore. This fixes a bug in commit 44797f7be06e047c2ecd56189c5bb11e7edf854f, which implicitly changed from xelatex to pdflatex as latex build-command. Signed-off-by: Holger Dengler --- modules.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'modules.mk') diff --git a/modules.mk b/modules.mk index eab7185..d58aecf 100644 --- a/modules.mk +++ b/modules.mk @@ -4,7 +4,7 @@ PHONY := BASE_NAME = $(shell basename $(dir $(CURDIR))) -TMP_TEXFILES = *.aux *.log *.nav *.toc *.pdf *.snm \ +TMP_TEXFILES = *.aux *.log *.nav *.toc *.pdf *.snm *.xdv \ *.bbl *.blg *.out *.vrb *.fls *.fdb_latexmk PHONY += build -- cgit v1.2.3