Skip to content

Commit

Permalink
Stop using latexmk for the booklet
Browse files Browse the repository at this point in the history
Looks like it breaks parallel build on  Github CI
  • Loading branch information
cedounet committed Dec 29, 2024
1 parent 2dea80a commit e00f853
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion book/makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit e00f853

Please sign in to comment.