From 4ec17acaba3e5151433aa38fd6867e96ad1915b4 Mon Sep 17 00:00:00 2001 From: Leon Vatthauer Date: Fri, 9 Feb 2024 13:31:06 +0100 Subject: [PATCH] fix makefile --- thesis/Makefile | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/thesis/Makefile b/thesis/Makefile index 461584d..9afb083 100644 --- a/thesis/Makefile +++ b/thesis/Makefile @@ -2,16 +2,12 @@ src = $(wildcard *.tex) pdf = $(src:.tex=.pdf) imgpdf = $(wildcard img/*.pdf) -.PHONY: all clean install +.PHONY: all clean all: $(pdf) $(imgpdf) %.pdf: %.tex $(wildcard src/*.tex) $(wildcard *.bib) $(imgpdf) - latexmk -file-line-error -synctex=1 -halt-on-error -shell-escape -pdf $< - -fast: - # enforce tex execution - pdflatex -synctex=1 $(src) + latexmk -pdf -xelatex -shell-escape -file-line-error -synctex=1 -halt-on-error -shell-escape $< clean: latexmk -C $(src)