From 84a83dea69f2536eb79716d0cbc9ad4860bbdf4f Mon Sep 17 00:00:00 2001 From: Gustav Eek Date: Mon, 24 May 2021 14:04:45 +0200 Subject: Annual 2021. Annual report. Corect acronyms and makefile Update *Makefile*, main wrapper, sed scripts, and acronyms. --- annual-reports/Makefile | 1 + 1 file changed, 1 insertion(+) (limited to 'annual-reports/Makefile') diff --git a/annual-reports/Makefile b/annual-reports/Makefile index d7225f6..4bb0a9b 100644 --- a/annual-reports/Makefile +++ b/annual-reports/Makefile @@ -1,4 +1,5 @@ ALL = \ + annual-report-2021-of-2020.pdf \ annual-report-2020-of-2019.pdf \ economical-report-2020-of-2019.pdf \ auditors-report-2020-of-2019.pdf \ -- cgit v1.2.3 From ce65d35927101b52c6c8953711e89c4344cb79a7 Mon Sep 17 00:00:00 2001 From: Gustav Eek Date: Sun, 30 May 2021 12:17:22 +0200 Subject: Annual 2021. Add economical report --- annual-reports/Makefile | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'annual-reports/Makefile') diff --git a/annual-reports/Makefile b/annual-reports/Makefile index 4bb0a9b..fbcc3ef 100644 --- a/annual-reports/Makefile +++ b/annual-reports/Makefile @@ -1,5 +1,6 @@ ALL = \ annual-report-2021-of-2020.pdf \ + economical-report-2021-of-2020.pdf \ annual-report-2020-of-2019.pdf \ economical-report-2020-of-2019.pdf \ auditors-report-2020-of-2019.pdf \ @@ -23,6 +24,9 @@ all : $(ALL) pandoc -f markdown -t latex \ > $@ +economical-report-2021-of-2020.pdf: Balans-och-resultat-2020.pdf + ln -s $< $@ + economical-report-2020-of-2019.pdf: Balans-och-resultat-2019.pdf ln -s $< $@ -- cgit v1.2.3 From 06ee08a2b672803316c118a0cb43cb1f304e3a9e Mon Sep 17 00:00:00 2001 From: Gustav Eek Date: Sun, 30 May 2021 12:32:13 +0200 Subject: Annual 2021. Add auditor's report --- annual-reports/Makefile | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) (limited to 'annual-reports/Makefile') diff --git a/annual-reports/Makefile b/annual-reports/Makefile index fbcc3ef..f561ec6 100644 --- a/annual-reports/Makefile +++ b/annual-reports/Makefile @@ -1,6 +1,7 @@ ALL = \ annual-report-2021-of-2020.pdf \ economical-report-2021-of-2020.pdf \ + auditors-report-2021-of-2020.pdf \ annual-report-2020-of-2019.pdf \ economical-report-2020-of-2019.pdf \ auditors-report-2020-of-2019.pdf \ @@ -25,10 +26,10 @@ all : $(ALL) > $@ economical-report-2021-of-2020.pdf: Balans-och-resultat-2020.pdf - ln -s $< $@ + cp $< $@ economical-report-2020-of-2019.pdf: Balans-och-resultat-2019.pdf - ln -s $< $@ + cp $< $@ annual-report-2019.pdf: annual-report-2019-master.tex annual-report-2019.tex pdflatex -jobname=$(basename $@) annual-report-2019-master.tex @@ -40,7 +41,10 @@ auditors-report-2019.pdf: revision2018.pdf cp $< $@ auditors-report-2020-of-2019.pdf: revision2019.pdf - ln -s $< $@ + cp $< $@ + +auditors-report-2021-of-2020.pdf: revision2020.pdf + cp $< $@ annual-report-2018.pdf: annual-report-2018-master.tex annual-report-2018.tex pdflatex -jobname=$(basename $@) annual-report-2018-master.tex -- cgit v1.2.3