summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorNeal H. Walfield <neal@gnu.org>2008-12-12 10:01:43 +0100
committerNeal H. Walfield <neal@gnu.org>2008-12-12 10:01:43 +0100
commitf67f59da6de65186c674afb8e7307d6b23f48b63 (patch)
treed8c3bc5e95bbec8d1631ea2c6b6abfc4357785b5 /doc
parent2ccb9282308fc6d72be23a043ad8e3396d97052e (diff)
Run pdflatex in non-stop mode.
2008-12-12 Neal H. Walfield <neal@gnu.org> * Makefile.am (%.pdf): Add `\\nonstopmode\\input' when invoking pdflatex.
Diffstat (limited to 'doc')
-rw-r--r--doc/ChangeLog5
-rw-r--r--doc/Makefile.am9
2 files changed, 11 insertions, 3 deletions
diff --git a/doc/ChangeLog b/doc/ChangeLog
index 332174c..6ded700 100644
--- a/doc/ChangeLog
+++ b/doc/ChangeLog
@@ -1,3 +1,8 @@
+2008-12-12 Neal H. Walfield <neal@gnu.org>
+
+ * Makefile.am (%.pdf): Add `\\nonstopmode\\input' when invoking
+ pdflatex.
+
2008-12-11 Neal H. Walfield <neal@gnu.org>
* .gitignore: New file.
diff --git a/doc/Makefile.am b/doc/Makefile.am
index 016adc9..53f8bd6 100644
--- a/doc/Makefile.am
+++ b/doc/Makefile.am
@@ -44,10 +44,13 @@ reference-guide.pdf: ${eps_files} ${pdf_files} ${tex_files} ${bib_files}
SUFFIXES = .tex .eps .fig .pdf
%.pdf: %.tex
- TEXINPUTS="$(srcdir):$(TEXINPUTS)" $(PDFLATEX) $< -o $@ ; \
+ TEXINPUTS="$(srcdir):$(TEXINPUTS)" $(PDFLATEX) \
+ \\nonstopmode\\input $< -o $@ ; \
BIBINPUTS="$(srcdir):$(BIBINPUTS)" $(BIBTEX) $* ; \
- TEXINPUTS="$(srcdir):$(TEXINPUTS)" $(PDFLATEX) $< -o $@ ; \
- TEXINPUTS="$(srcdir):$(TEXINPUTS)" $(PDFLATEX) $< -o $@ ;
+ TEXINPUTS="$(srcdir):$(TEXINPUTS)" $(PDFLATEX) \
+ \\nonstopmode\\input $< -o $@ ; \
+ TEXINPUTS="$(srcdir):$(TEXINPUTS)" $(PDFLATEX) \
+ \\nonstopmode\\input $< -o $@ ;
.fig.eps:
$(FIG2DEV) -L eps $< $@