Fix makefile

This commit is contained in:
Leon Vatthauer 2024-03-13 12:38:31 +01:00
parent 723c4b0175
commit 50c98dc642
Signed by: leonv
SSH key fingerprint: SHA256:G4+ddwoZmhLPRB1agvXzZMXIzkVJ36dUYZXf5NxT+u8

View file

@ -4,9 +4,9 @@ imgpdf = $(wildcard img/*.pdf)
.PHONY: all clean
all: \((pdf) \)(imgpdf)
all: $(pdf) $(imgpdf)
%.pdf: %.tex \((wildcard src/*.tex) \)(wildcard *.bib) $(imgpdf)
%.pdf: %.tex $(wildcard src/*.tex) $(wildcard *.bib) $(imgpdf)
latexmk -pdf -xelatex -shell-escape -file-line-error -synctex=1 -halt-on-error -shell-escape $<
clean: