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.
# 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 \
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