diff options
author | Gustav Eek <gustav.eek@fripost.org> | 2011-04-18 10:56:11 +0200 |
---|---|---|
committer | Gustav Eek <gustav.eek@fripost.org> | 2011-04-18 10:56:11 +0200 |
commit | 073f2ab046efdef88c9d946545685a5fb204cd76 (patch) | |
tree | 149dfd38089776f7734b8478ba51e80c25f5556d /2011/Makefile | |
parent | 007d7a95a4c933490a6dfc9583df27e6eace9f9e (diff) |
Minutes from April 13's member meeting added.
Diffstat (limited to '2011/Makefile')
-rw-r--r-- | 2011/Makefile | 11 |
1 files changed, 10 insertions, 1 deletions
diff --git a/2011/Makefile b/2011/Makefile index 4747849..353da7e 100644 --- a/2011/Makefile +++ b/2011/Makefile @@ -5,7 +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' -all: 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 +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 + +$(minuets1).pdf: $(minuets1).tex ../preamble/preamble.tex + pdflatex $(minuets1).tex + latex_count=5 ; \ + while egrep -s 'Rerun (LaTeX|to get cross-references right)' $(minuets1).log && [ $$latex_count -gt 0 ] ;\ + do echo "Rerunning latex...." ; pdflatex $(minuets1).tex; latex_count=`expr $$latex_count - 1`; done + 2011-04-05-board.pdf: 2011-04-05-board.tex ../preamble/preamble.tex pdflatex 2011-04-05-board.tex |