Index: doc/theses/thierry_delisle_PhD/thesis/Makefile
===================================================================
--- doc/theses/thierry_delisle_PhD/thesis/Makefile	(revision c04a19e8634bf494d91b7c624348810ef1d562bf)
+++ doc/theses/thierry_delisle_PhD/thesis/Makefile	(revision bace538f1b51717cd22831d1441e2537af67659f)
@@ -8,5 +8,5 @@
 BibTeX = BIBINPUTS=${TeXLIB} && export BIBINPUTS && bibtex
 
-MAKEFLAGS = --no-print-directory --silent #
+MAKEFLAGS = --no-print-directory --silent
 VPATH = ${Build} ${Figures}
 
@@ -66,4 +66,6 @@
 
 build/%.dvi : %.tex Makefile | ${Build}
+	# Conditionally create an empty *.ind (index) file for inclusion until makeindex is run.
+	if [ ! -r ${basename $@}.ind ] ; then touch ${basename $@}.ind ; fi
 	# Must have *.aux file containing citations for bibtex
 	if [ ! -r ${basename $@}.aux ] ; then ${LaTeX} $< ; fi
@@ -74,4 +76,6 @@
 	# Make index from *.aux entries and input index at end of document
 	-makeglossaries -q -s ${basename $@}.ist ${basename $@}
+	# Make index from *.aux entries and input index at end of document
+	-makeindex ${basename $@}.idx
 	# Run again to finish citations
 	${LaTeX} $<
