aboutsummaryrefslogtreecommitdiffstats
path: root/operational-plans/Makefile
diff options
context:
space:
mode:
authorGustav Eek <gustav.eek@proceranetworks.com>2012-03-13 17:01:59 +0100
committerGustav Eek <gustav.eek@proceranetworks.com>2012-03-14 23:32:30 +0100
commit1ef9d4f520316f19658611ffeef2f336ecf9da89 (patch)
tree45d1ad1bb1b023a56d9a83ab5695f6cf35700ac5 /operational-plans/Makefile
parent9c1dd7178510c5080ebb537da301912528fd0102 (diff)
Annual meeting minutes ready for proof reading
The minutes now include the new by-laws, the annual-report, the operational-plan, and a scanned copy of the auditor's report. All these things are in separate folders. Allso the 2012 year's by-laws have been moved to this folder, and Makefile is uppdated to compile by-laws for 2010. The typesetting of item and numbered lists is more unified. However, more work might be needed on this. The auditor's report is included as PDF graphics. Note that PDF-files generally are not part of repo (see .gitignore). This time it is forced in.
Diffstat (limited to 'operational-plans/Makefile')
-rw-r--r--operational-plans/Makefile20
1 files changed, 20 insertions, 0 deletions
diff --git a/operational-plans/Makefile b/operational-plans/Makefile
new file mode 100644
index 0000000..6e7a689
--- /dev/null
+++ b/operational-plans/Makefile
@@ -0,0 +1,20 @@
+# 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'
+
+operationalplan1 = operational-plan-2012
+
+all: $(operationalplan1).pdf
+
+$(operationalplan1).pdf: $(operationalplan1).tex $(operationalplan1).main.tex ../preamble/preamble.tex
+ pdflatex $(operationalplan1).main.tex
+ latex_count=5 ; \
+ while egrep -s 'Rerun (LaTeX|to get cross-references right)' $(operationalplan1).main.log && [ $$latex_count -gt 0 ] ;\
+ do echo "Rerunning latex...." ; pdflatex $(operationalplan1).tex; latex_count=`expr $$latex_count - 1`; done
+ mv $(operationalplan1).main.pdf $@
+
+clean:
+ rm *.aux *.bbl *.dvi *.log *.nav *.out *.snm *.toc *~