From 1ef9d4f520316f19658611ffeef2f336ecf9da89 Mon Sep 17 00:00:00 2001 From: Gustav Eek Date: Tue, 13 Mar 2012 17:01:59 +0100 Subject: 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. --- by-laws/Makefile | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 by-laws/Makefile (limited to 'by-laws/Makefile') diff --git a/by-laws/Makefile b/by-laws/Makefile new file mode 100644 index 0000000..af01b77 --- /dev/null +++ b/by-laws/Makefile @@ -0,0 +1,27 @@ +# 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' + +bylaws2 = by-laws-2012 +bylaws1 = by-laws-2010 + +all: $(bylaws2).pdf $(bylaws1).pdf + +$(bylaws2).pdf: $(bylaws2).tex $(bylaws2).main.tex ../preamble/preamble.tex + pdflatex $(bylaws2).main.tex + latex_count=5 ; \ + while egrep -s 'Rerun (LaTeX|to get cross-references right)' $(bylaws2).main.log && [ $$latex_count -gt 0 ] ;\ + do echo "Rerunning latex...." ; pdflatex $(bylaws2).tex; latex_count=`expr $$latex_count - 1`; done + mv $(bylaws2).main.pdf $@ +$(bylaws1).pdf: $(bylaws1).tex $(bylaws1).main.tex ../preamble/preamble.tex + pdflatex $(bylaws1).main.tex + latex_count=5 ; \ + while egrep -s 'Rerun (LaTeX|to get cross-references right)' $(bylaws1).main.log && [ $$latex_count -gt 0 ] ;\ + do echo "Rerunning latex...." ; pdflatex $(bylaws1).tex; latex_count=`expr $$latex_count - 1`; done + mv $(bylaws1).main.pdf $@ + +clean: + rm *.aux *.bbl *.dvi *.log *.nav *.out *.snm *.toc *~ -- cgit v1.2.3