aboutsummaryrefslogtreecommitdiffstats
path: root/2012/Makefile
diff options
context:
space:
mode:
authorGustav Eek <gustav.eek@proceranetworks.com>2012-02-29 07:12:58 +0100
committerGustav Eek <gustav.eek@proceranetworks.com>2012-02-29 07:12:58 +0100
commit595c5a7bc2dc8fc93d522a809c40999c542f41ef (patch)
tree1fa59406bdabef7356b7de6d15f6caa3a00e7bef /2012/Makefile
parent10a98692a3ba94f7c8bb6f5194feb60e0b0274e8 (diff)
Minutes from board meeting Feb 27 is added.
Diffstat (limited to '2012/Makefile')
-rw-r--r--2012/Makefile8
1 files changed, 7 insertions, 1 deletions
diff --git a/2012/Makefile b/2012/Makefile
index ca9e374..c9c852f 100644
--- a/2012/Makefile
+++ b/2012/Makefile
@@ -5,10 +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'
+minutes2 = 2012-02-27-board
minutes1 = 2012-01-19-board
-all: $(minutes1)
+all: $(minutes1) $(minutes2)
+$(minutes2).pdf: $(minutes2).tex ../preamble/preamble.tex
+ pdflatex $(minutes2).tex
+ latex_count=5 ; \
+ while egrep -s 'Rerun (LaTeX|to get cross-references right)' $(minutes2).log && [ $$latex_count -gt 0 ] ;\
+ do echo "Rerunning latex...." ; pdflatex $(minutes2).tex; latex_count=`expr $$latex_count - 1`; done
$(minutes1).pdf: $(minutes1).tex ../preamble/preamble.tex
pdflatex $(minutes1).tex
latex_count=5 ; \