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 /2016/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 '2016/Makefile')
-rw-r--r-- | 2016/Makefile | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/2016/Makefile b/2016/Makefile index 744b478..5a3d82a 100644 --- a/2016/Makefile +++ b/2016/Makefile @@ -2,6 +2,7 @@ MINUTES = \ 2016-06-13-board \ +2016-04-17-annual \ common-makefile = ../resources/Makefile-common @@ -13,6 +14,19 @@ 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: |