From 6ee5658942c8662c360f0b1fd47dca460f761f48 Mon Sep 17 00:00:00 2001 From: Michael Orlitzky Date: Sun, 15 Sep 2019 20:51:17 -0400 Subject: [PATCH] GNUmakefile: fix rebuild loop caused by idx file regeneration. --- GNUmakefile | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/GNUmakefile b/GNUmakefile index 75f4677..e61d7f2 100644 --- a/GNUmakefile +++ b/GNUmakefile @@ -63,7 +63,6 @@ endif ifdef INDICES INDEX_SRCS = $(addsuffix .idx,$(INDICES)) INDEX_DSTS = $(addsuffix .ind,$(INDICES)) -SRCS += $(INDEX_DSTS) endif # The first target is the default, so put the PDF document first. @@ -100,7 +99,7 @@ endif # version of pdflatex makes it into TeX Live 2016, we can replace # those two sed scripts with something smarter. # -$(PN).pdf: $(SRCS) $(PN).bbl +$(PN).pdf: $(SRCS) $(PN).bbl $(INDEX_DSTS) $(LATEX) $(PN).tex sed --in-place \ @@ -136,8 +135,12 @@ $(INDEX_SRCS): $(PN).tex endif ifdef INDICES -# Create real indices from source files by running "makeindex" on them. -%.ind: %.idx +# Create real indices from source files by running "makeindex" on +# them. We depend on SRCS here because we *do* want to rebuild the +# index if the source document changes, but we use an order-only +# dependency (see the bbl rule below) on the idx files to prevent us +# from going into a rebuild loop when the idx files are regenerated. +%.ind: $(SRCS) | %.idx makeindex $< endif -- 2.43.2