aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGustav Eek <gustav.eek@fripost.org>2020-05-23 11:00:09 +0200
committerGustav Eek <gustav.eek@fripost.org>2020-05-25 12:57:49 +0200
commitda9eb01d65a124afedfcee720ad003d723fd19d9 (patch)
tree4736e17e5d3e4709c4efd0a7145b7bca6e08cce7
parent8cf1c7117c38f1dc9f6cbfeb44ba16ee62f04f1f (diff)
S with annual report Makefile. Update Makefile
TODO Replace cp with symlinks.
-rw-r--r--annual-reports/Makefile6
1 files changed, 5 insertions, 1 deletions
diff --git a/annual-reports/Makefile b/annual-reports/Makefile
index 3d6e5f5..d7225f6 100644
--- a/annual-reports/Makefile
+++ b/annual-reports/Makefile
@@ -1,5 +1,6 @@
ALL = \
annual-report-2020-of-2019.pdf \
+ economical-report-2020-of-2019.pdf \
auditors-report-2020-of-2019.pdf \
annual-report-2019.pdf \
economical-report-2019.pdf \
@@ -21,6 +22,9 @@ all : $(ALL)
pandoc -f markdown -t latex \
> $@
+economical-report-2020-of-2019.pdf: Balans-och-resultat-2019.pdf
+ ln -s $< $@
+
annual-report-2019.pdf: annual-report-2019-master.tex annual-report-2019.tex
pdflatex -jobname=$(basename $@) annual-report-2019-master.tex
@@ -31,7 +35,7 @@ auditors-report-2019.pdf: revision2018.pdf
cp $< $@
auditors-report-2020-of-2019.pdf: revision2019.pdf
- cp $< $@
+ ln -s $< $@
annual-report-2018.pdf: annual-report-2018-master.tex annual-report-2018.tex
pdflatex -jobname=$(basename $@) annual-report-2018-master.tex