diff options
author | Gustav Eek <gustav.eek@etraveli.com> | 2017-05-09 21:53:15 +0200 |
---|---|---|
committer | Gustav Eek <gustav.eek@etraveli.com> | 2017-05-09 21:53:15 +0200 |
commit | b5b613ed628948d38968e897b6d4558d227c613e (patch) | |
tree | a7366bdc47261522b584c684b23ba44e7ae5d844 /annual-reports/Makefile | |
parent | ad33c470cc6f8878afd24133f4ffd1db7acff5ca (diff) | |
parent | bbdb2e6b58317aac124c0bf176bd2e67b4ed4413 (diff) |
Merge branch '2016-04-17-annual' into 2017-05-13-annual
Conflicts:
2016/Makefile
agenda/Makefile
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) |