diff options
author | Gustav Eek <gustav.eek@fripost.org> | 2011-05-25 14:32:28 +0200 |
---|---|---|
committer | Gustav Eek <gustav.eek@fripost.org> | 2011-05-25 14:32:28 +0200 |
commit | 74dc2c0fae005d3ba118775d8cd58fc2668b7f93 (patch) | |
tree | e8589eb04f53aa8907cc21c5efc47bf29b8a6f8c /2011/Makefile | |
parent | 9f953ff948577c7ea3616d6dbb36d398c6fcf417 (diff) |
Minutes written for Board meeting May 18. Participants update for Member meeting April 13.
Diffstat (limited to '2011/Makefile')
-rw-r--r-- | 2011/Makefile | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/2011/Makefile b/2011/Makefile index 976ca0e..ec9ffd4 100644 --- a/2011/Makefile +++ b/2011/Makefile @@ -5,11 +5,18 @@ 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' +minuets3 = 2011-05-18-board minuets2 = 2011-04-27-board minuets1 = 2011-04-13-member 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 +$(minuets3).pdf: $(minuets3).tex ../preamble/preamble.tex + pdflatex $(minuets3).tex + latex_count=5 ; \ + while egrep -s 'Rerun (LaTeX|to get cross-references right)' $(minuets3).log && [ $$latex_count -gt 0 ] ;\ + do echo "Rerunning latex...." ; pdflatex $(minuets3).tex; latex_count=`expr $$latex_count - 1`; done + $(minuets2).pdf: $(minuets2).tex ../preamble/preamble.tex pdflatex $(minuets2).tex latex_count=5 ; \ |