diff options
author | Gustav Eek <gustav.eek@fripost.org> | 2022-05-24 07:33:21 +0200 |
---|---|---|
committer | Gustav Eek <gustav.eek@fripost.org> | 2022-05-24 07:33:21 +0200 |
commit | f96b8c73a0d922e54e7e3a13bef6f234dd08027b (patch) | |
tree | 1f5bc71a765220e56d8b474c95c300506a23f0a4 /annual-reports/Makefile | |
parent | ac99b7ac503cd5badaba9442676e9a24d80380e2 (diff) | |
parent | 4247e0ffa9958d42950f813e355f2a116aa16f9a (diff) |
Merge branch '2021-05-30-annual'ge/latex-sty
Diffstat (limited to 'annual-reports/Makefile')
-rw-r--r-- | annual-reports/Makefile | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/annual-reports/Makefile b/annual-reports/Makefile index d7225f6..f561ec6 100644 --- a/annual-reports/Makefile +++ b/annual-reports/Makefile @@ -1,4 +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 \ @@ -22,8 +25,11 @@ all : $(ALL) pandoc -f markdown -t latex \ > $@ +economical-report-2021-of-2020.pdf: Balans-och-resultat-2020.pdf + 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 @@ -35,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 |