diff options
| author | Fabien Costantini <fabien@onepost.net> | 2008-10-15 06:58:38 +0000 |
|---|---|---|
| committer | Fabien Costantini <fabien@onepost.net> | 2008-10-15 06:58:38 +0000 |
| commit | 9701852f48745a3e4fd47bea9645ef6aa5da35f1 (patch) | |
| tree | d1cc265d2e33673c4e5c23ea65fb81802cc956d3 /documentation | |
| parent | 42184c88b6c485097e8709be9ffb2d21f1b65263 (diff) | |
Doxygen pdf documentation: made pdflatex run in batchmode. This is non verbose and nonstopmode is, but pdflatex also furthers refman.log containing all the error report...
git-svn-id: file:///fltk/svn/fltk/branches/branch-1.3@6434 ea41ed52-d2ee-0310-a9c1-e6b18d33e121
Diffstat (limited to 'documentation')
| -rw-r--r-- | documentation/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/documentation/Makefile b/documentation/Makefile index 644285480..c1b30108b 100644 --- a/documentation/Makefile +++ b/documentation/Makefile @@ -211,15 +211,15 @@ html/index.html: $(IMAGEFILES) pdf: refman.pdf refman.pdf: latex/refman.tex - (cd latex; pdflatex refman.tex) + (cd latex; pdflatex --interaction=batchmode refman.tex ) (cd latex; makeindex refman.idx) - (cd latex; pdflatex refman.tex) + (cd latex; pdflatex --interaction=batchmode refman.tex ) latex_count=5; \ cd latex ; \ while egrep -s 'Rerun (LaTeX|to get cross-references right)' refman.log && [ $$latex_count -gt 0 ] ;\ do \ echo "Rerunning latex...." ;\ - pdflatex refman.tex ;\ + pdflatex --interaction=batchmode refman.tex ;\ latex_count=`expr $$latex_count - 1` ;\ done ; \ cd .. |
