diff options
author | Gustav Eek <gustav.eek@fripost.org> | 2018-05-13 20:36:56 +0200 |
---|---|---|
committer | Gustav Eek <gustav.eek@fripost.org> | 2018-05-20 23:14:28 +0200 |
commit | 9d67e6918cc88cc13e31ad5bc57543b6dde5b7a3 (patch) | |
tree | 4ae7337ba90c100d04d0f1839d0eb027024b91c9 /2018/Makefile | |
parent | 57d5a58e8a04dea5e3b768b9543398982b8e11a7 (diff) |
Annual 2018. Inital on actual minutes.
Diffstat (limited to '2018/Makefile')
-rw-r--r-- | 2018/Makefile | 19 |
1 files changed, 18 insertions, 1 deletions
diff --git a/2018/Makefile b/2018/Makefile index ab9586a..974d85e 100644 --- a/2018/Makefile +++ b/2018/Makefile @@ -1,7 +1,8 @@ # Makefile for minutes of 2016 MINUTES = \ -2018-01-22-board +2018-01-22-board \ +2018-05-06-annual \ common-makefile = ../resources/Makefile-common @@ -13,6 +14,22 @@ all: $(MINUTES) %: make -f $(common-makefile) compile FILE=$* +annual-job = 2018-05-06-annual +annual-tex = \ + 2018-05-06-annual \ + ../annual-reports/annual-report-2018 \ + ../operational-plans/notes-plan-2018 \ + ../operational-plans/operational-plan-2018 +annual-pdf = \ + ../annual-reports/economical-report-2018 \ + ../annual-reports/auditors-report-2018 +$(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: |