From e00f8530637224a97287fc85ebbac06fd79f9ec2 Mon Sep 17 00:00:00 2001 From: Cedric Date: Sun, 29 Dec 2024 19:52:51 +0000 Subject: [PATCH] Stop using latexmk for the booklet Looks like it breaks parallel build on Github CI --- book/makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/book/makefile b/book/makefile index c34caed..7e77c33 100644 --- a/book/makefile +++ b/book/makefile @@ -97,8 +97,11 @@ tgt_figures := $(patsubst %.tex, %.png,$(src_figures)) %.xbb: %.jpg ebb -x $< +# We don't want to use latexmk as there is no biber nor references and it +# seems to make it somehow unhappy booklet/booklet.pdf: $(booklet_src) - $(LATEX) -nobibtex -output-directory=booklet booklet.tex + mkdir -p booklet + lualatex --output-directory=booklet booklet.tex book_serif/book.pdf: $(src_all) $(LATEX) -output-directory=book_serif book.tex