diff options
author | Gustav Eek <gustav.eek@fripost.org> | 2017-05-08 09:58:12 +0200 |
---|---|---|
committer | Gustav Eek <gustav.eek@fripost.org> | 2018-04-29 22:44:09 +0200 |
commit | 92be899e95c3e84947500ec9c558c491f0b83b20 (patch) | |
tree | 7aa37158f5fbbe57c8726a7cd8eeab4bcdc49f32 | |
parent | 74026d2625cbf434ceb31724b9a1995c713881c8 (diff) |
Scanned copies economical and auditors reports for annual 2016
The file *20170508_092252.pdf* contains the scanned copies. Makefieles
are modified to correctly derive *economical-report-2016.pdf
and *auditors-report-2016.pdf*.
-rw-r--r-- | 2016/Makefile | 4 | ||||
-rw-r--r-- | annual-reports/20170508_092252.pdf | bin | 0 -> 39039 bytes | |||
-rw-r--r-- | annual-reports/Makefile | 16 |
3 files changed, 17 insertions, 3 deletions
diff --git a/2016/Makefile b/2016/Makefile index 48e0643..90e1a91 100644 --- a/2016/Makefile +++ b/2016/Makefile @@ -20,8 +20,10 @@ annual-tex = \ annual-pdf = \ ../annual-reports/economical-report-2016 \ ../annual-reports/auditors-report-2016 -$(annual-job): +$(annual-job): $(addsuffix .pdf, $(annual-pdf)) make -f $(common-makefile) compile FILE=$(annual-job) FILES_TEX="$(annual-tex)" FILES_PDF="$(annual-pdf)" +$(addsuffix .pdf, $(annual-pdf)): + make -C ../annual-reports $(notdir $@) send: make -f $(common-makefile) send SEND_FILES="$(MINUTES)" diff --git a/annual-reports/20170508_092252.pdf b/annual-reports/20170508_092252.pdf Binary files differnew file mode 100644 index 0000000..57276cc --- /dev/null +++ b/annual-reports/20170508_092252.pdf diff --git a/annual-reports/Makefile b/annual-reports/Makefile index c04b106..5d762f9 100644 --- a/annual-reports/Makefile +++ b/annual-reports/Makefile @@ -1,5 +1,17 @@ -all : \ - annual-report-2016.pdf + +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) |