This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "CMU Common Lisp".
The branch, master has been updated via e7d0e7008ecd1eab4f1274a3db8e2812a6b59014 (commit) from 1dc1c331381ecd8241532c165f8bac88a3abd6b8 (commit)
Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below.
- Log ----------------------------------------------------------------- commit e7d0e7008ecd1eab4f1274a3db8e2812a6b59014 Author: Raymond Toy toy.raymond@gmail.com Date: Fri Jan 4 09:24:49 2013 -0800
Update rules for pdf and dvi to run latex enough times. Taken from cmu-user/Makefile.
diff --git a/src/docs/internals/Makefile b/src/docs/internals/Makefile index d68c4cc..bbb389b 100644 --- a/src/docs/internals/Makefile +++ b/src/docs/internals/Makefile @@ -41,12 +41,21 @@ firsttime: $(MASTERFILE).dvi
%.dvi : %.tex + $(LATEX) $< + @while ( grep Rerun $*.log > /dev/null ); do \ + $(LATEX) $<; \ + done + $(LATEX) $<
%.eps : %.fig fig2dev -L ps $^ $@
%.pdf : %.tex $(PDFLATEX) $^ + @while ( grep -v 'Package: rerunfilecheck' $*.log | grep Rerun > /dev/null ); do \ + $(PDFLATEX) $<; \ + done + $(PDFLATEX) $<
%.ps : %.dvi $(DVIPS) $(DVIPSOPTS) -o $@ $*
-----------------------------------------------------------------------
Summary of changes: src/docs/internals/Makefile | 9 +++++++++ 1 files changed, 9 insertions(+), 0 deletions(-)
hooks/post-receive