diff options
author | Gustav Eek <gustav.eek@fripost.org> | 2011-05-18 17:02:15 +0200 |
---|---|---|
committer | Gustav Eek <gustav.eek@fripost.org> | 2011-05-18 17:02:15 +0200 |
commit | af504f532ea37b954ac929b00a3283b820038401 (patch) | |
tree | 7e41828d73f0d29ebb6209f4ac52702d81497e91 /2011/Makefile | |
parent | 3726a51a7d356b15f75e7b61ca345e7893d07d1f (diff) |
Minutes for April 27 meeting written.
Diffstat (limited to '2011/Makefile')
-rw-r--r-- | 2011/Makefile | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/2011/Makefile b/2011/Makefile index 9566b6d..976ca0e 100644 --- a/2011/Makefile +++ b/2011/Makefile @@ -5,9 +5,16 @@ noarg: echo -e '\nThis script do not run without arguments. Run for example:\n\n make 2011-02-13-board-notes.pdf\n make all\n' +minuets2 = 2011-04-27-board minuets1 = 2011-04-13-member -all: minuets1.pdf 2011-04-05-board.pdf 2011-03-10-board.pdf 2011-02-20-board.pdf 2011-02-13-board-notes.pdf 2011-01-20-board.pdf 2011-01-10-board.pdf +all: minutes2.pdf minuets1.pdf 2011-04-05-board.pdf 2011-03-10-board.pdf 2011-02-20-board.pdf 2011-02-13-board-notes.pdf 2011-01-20-board.pdf 2011-01-10-board.pdf + +$(minuets2).pdf: $(minuets2).tex ../preamble/preamble.tex + pdflatex $(minuets2).tex + latex_count=5 ; \ + while egrep -s 'Rerun (LaTeX|to get cross-references right)' $(minuets2).log && [ $$latex_count -gt 0 ] ;\ + do echo "Rerunning latex...." ; pdflatex $(minuets2).tex; latex_count=`expr $$latex_count - 1`; done $(minuets1).pdf: $(minuets1).tex ../preamble/preamble.tex pdflatex $(minuets1).tex |