diff options
author | Gustav Eek <gustav.eek@fripost.org> | 2018-04-29 22:50:20 +0200 |
---|---|---|
committer | Gustav Eek <gustav.eek@fripost.org> | 2018-04-29 22:50:20 +0200 |
commit | a18c6ba51352f60d0bf0a8cd8a088b41872cd46c (patch) | |
tree | 7bf229ef022ed22c906c1eca5593bb064e3cfaa9 /annual-reports/Makefile | |
parent | c00efc3abb3b065104be0055f3e0e0933440980a (diff) | |
parent | 92be899e95c3e84947500ec9c558c491f0b83b20 (diff) |
Merge branch '2016-04-17-annual' into intgr/2016intgr/2016
Diffstat (limited to 'annual-reports/Makefile')
-rw-r--r-- | annual-reports/Makefile | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/annual-reports/Makefile b/annual-reports/Makefile new file mode 100644 index 0000000..5d762f9 --- /dev/null +++ b/annual-reports/Makefile @@ -0,0 +1,17 @@ + +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) |