From 711cc38e249293c24080b221205b39a880e45d17 Mon Sep 17 00:00:00 2001 From: Cedric Date: Mon, 30 Dec 2024 23:50:38 +0000 Subject: [PATCH] Fix a bug on make clean We were deleting the .table files by mistake with clean/mrproper --- book/makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/book/makefile b/book/makefile index f40e952..05a0889 100644 --- a/book/makefile +++ b/book/makefile @@ -35,8 +35,8 @@ chapters = baking basics bread-types cover flour-types history intro mix-ins\ src_tables := $(wildcard tables/table-*.tex) src_figures := $(wildcard figures/fig-*.tex) figures/flowcharts_tikz.tex src_figures += $(wildcard plots/fig-*.tex) -src_figures += $(wildcard plots/*.table) src_recipes := $(wildcard recipes/*.tex) +src_plots := $(wildcard plots/*.table) src_tex := $(foreach directory, $(chapters), $(wildcard $(directory)/*.tex)) src_tex += book.tex book_sans_serif.tex references.bib figures/vars.tex @@ -60,7 +60,7 @@ bw_images := $(addprefix bw-book-epub/OEBPS/, $(images)) # images to lower resolution low_res_images := $(addprefix low-res-book-epub/OEBPS/, $(images)) -src_all := $(src_tex) $(src_figures) $(src_tables) $(images) +src_all := $(src_tex) $(src_figures) $(src_tables) $(images) $(src_plots) ebook_src := $(src_all) tex4ebook.cfg book.mk4 book-ebook.css