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 /2016/Makefile | |
parent | c00efc3abb3b065104be0055f3e0e0933440980a (diff) | |
parent | 92be899e95c3e84947500ec9c558c491f0b83b20 (diff) |
Merge branch '2016-04-17-annual' into intgr/2016intgr/2016
Diffstat (limited to '2016/Makefile')
-rw-r--r-- | 2016/Makefile | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/2016/Makefile b/2016/Makefile index 0b4fea6..a19c4ff 100644 --- a/2016/Makefile +++ b/2016/Makefile @@ -3,6 +3,7 @@ MINUTES = \ 2016-01-25-board \ 2016-02-22-board \ +2016-04-17-annual \ 2016-04-25-board \ 2016-05-23-board \ 2016-06-13-board \ @@ -17,6 +18,18 @@ all: $(MINUTES) %: make -f $(common-makefile) compile FILE=$* +annual-job = 2016-04-17-annual +annual-tex = \ + ../annual-reports/annual-report-2016 \ + ../operational-plans/operational-plan-2016 +annual-pdf = \ + ../annual-reports/economical-report-2016 \ + ../annual-reports/auditors-report-2016 +$(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)" clean: |