aboutsummaryrefslogtreecommitdiffstats
path: root/2012/Makefile
diff options
context:
space:
mode:
authorGustav Eek <gustav@fripost.org>2012-01-22 19:50:51 +0100
committerGustav Eek <gustav@fripost.org>2012-01-22 19:50:51 +0100
commit10a98692a3ba94f7c8bb6f5194feb60e0b0274e8 (patch)
tree0c03badb1800907318310bbdd7b635fc13cfd51a /2012/Makefile
parent8c335daddc1ba0b89a56f3a04293014281c060e4 (diff)
Meeting minutes are written for Dec 13 and Jan 19.
Diffstat (limited to '2012/Makefile')
-rw-r--r--2012/Makefile19
1 files changed, 19 insertions, 0 deletions
diff --git a/2012/Makefile b/2012/Makefile
new file mode 100644
index 0000000..ca9e374
--- /dev/null
+++ b/2012/Makefile
@@ -0,0 +1,19 @@
+# Makefile for minutes with usual treatments, that is noting extra then just compilation.
+#
+# Gustav Eek 2011
+
+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'
+
+minutes1 = 2012-01-19-board
+
+all: $(minutes1)
+
+$(minutes1).pdf: $(minutes1).tex ../preamble/preamble.tex
+ pdflatex $(minutes1).tex
+ latex_count=5 ; \
+ while egrep -s 'Rerun (LaTeX|to get cross-references right)' $(minutes1).log && [ $$latex_count -gt 0 ] ;\
+ do echo "Rerunning latex...." ; pdflatex $(minutes1).tex; latex_count=`expr $$latex_count - 1`; done
+
+clean:
+ rm *.aux *.bbl *.dvi *.log *.nav *.out *.snm *.toc *~