diff options
author | Gustav Eek <gustav.eek@fripost.org> | 2018-06-06 09:56:47 +0200 |
---|---|---|
committer | Gustav Eek <gustav.eek@fripost.org> | 2018-06-06 09:56:47 +0200 |
commit | cee303fdda54053d52a18707140a59544ea1b4cb (patch) | |
tree | 5be3289f9bf8bdba45e3bc6a06bb6fdd926e3367 /annual-reports/Makefile | |
parent | 2f55af15da3d337bbd82ee7515540ed091ba67ed (diff) | |
parent | 37fea3df2309c657d59f247de1ead0658072f0a7 (diff) |
Merge branch '2018-05-06-annual'
Diffstat (limited to 'annual-reports/Makefile')
-rw-r--r-- | annual-reports/Makefile | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/annual-reports/Makefile b/annual-reports/Makefile new file mode 100644 index 0000000..53e7d3f --- /dev/null +++ b/annual-reports/Makefile @@ -0,0 +1,18 @@ +ALL = \ + annual-report-2018.pdf \ + economical-report-2018.pdf \ + auditors-report-2018.pdf \ + +all : $(ALL) + +annual-report-2018.pdf: annual-report-2018-master.tex annual-report-2018.tex + pdflatex -jobname=$(basename $@) annual-report-2018-master.tex + +economical-report-2018.pdf: Balans-och-resultat-2017.pdf + cp $< $@ + +auditors-report-2018.pdf: revision2017.pdf + cp $< $@ + +clean: + rm -fr $(ALL) |