From 8f0ad4d62f4e95a54a1e573b1a186b6ac239a7d6 Mon Sep 17 00:00:00 2001 From: Gustav Eek Date: Sat, 16 Apr 2016 14:40:54 +0200 Subject: Initial commit on anual report Annual report provided The annual report file is updated with a ready-to-present report. Also the preamble is updated and a Makefile created. --- annual-reports/Makefile | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 annual-reports/Makefile (limited to 'annual-reports/Makefile') diff --git a/annual-reports/Makefile b/annual-reports/Makefile new file mode 100644 index 0000000..c04b106 --- /dev/null +++ b/annual-reports/Makefile @@ -0,0 +1,5 @@ +all : \ + annual-report-2016.pdf + +annual-report-2016.pdf: annual-report-2016-master.tex annual-report-2016.tex + pdflatex -jobname=$(basename $@) annual-report-2016-master.tex -- cgit v1.2.3 From bbdb2e6b58317aac124c0bf176bd2e67b4ed4413 Mon Sep 17 00:00:00 2001 From: Gustav Eek Date: Mon, 8 May 2017 09:58:12 +0200 Subject: Scanned copies economical and auditors reports for annual 2016 The file *20170508_092252.pdf* contains the scanned copies. Makefieles are modified to correctly derive *economical-report-2016.pdf and *auditors-report-2016.pdf*. --- annual-reports/Makefile | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-) (limited to 'annual-reports/Makefile') diff --git a/annual-reports/Makefile b/annual-reports/Makefile index c04b106..5d762f9 100644 --- a/annual-reports/Makefile +++ b/annual-reports/Makefile @@ -1,5 +1,17 @@ -all : \ - annual-report-2016.pdf + +ALL = \ + annual-report-2016.pdf \ + economical-report-2016.pdf \ + auditors-report-2016.pdf \ + +all : $(ALL) annual-report-2016.pdf: annual-report-2016-master.tex annual-report-2016.tex pdflatex -jobname=$(basename $@) annual-report-2016-master.tex +economical-report-2016.pdf: 20170508_092252.pdf + pdftk $< cat 1 output $@ +auditors-report-2016.pdf: 20170508_092252.pdf + pdftk $< cat 2 output $@ + +clean: + rm -fr $(ALL) -- cgit v1.2.3