diff options
author | Gustav Eek <gustav.eek@etraveli.com> | 2017-05-09 21:31:17 +0200 |
---|---|---|
committer | Gustav Eek <gustav.eek@etraveli.com> | 2017-05-09 21:55:51 +0200 |
commit | 451c1b5baa76c6bb06aabd6548b83800f7e1f4b7 (patch) | |
tree | 4fe3289dc90f804acc6719030e4417f987ef1eed /2017/Makefile | |
parent | 149554044691a08151f72ec77ae9ab0c8d746221 (diff) |
For annual meeting 2017, template reports and minutes provided
A meeting minute template (a) *2017-05-13-annual.tex* and
a *2017/Makefile* is created and added.
Regarding reports and plans, templates are provided for (b) annual report,
(c) economical report, (d) auditors report and (e) operational
plan. Makefiles are modified accordingly.
A *dummy.tex* document used for some reports is added to
the *resources* folder.
Diffstat (limited to '2017/Makefile')
-rw-r--r-- | 2017/Makefile | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/2017/Makefile b/2017/Makefile new file mode 100644 index 0000000..06da7db --- /dev/null +++ b/2017/Makefile @@ -0,0 +1,31 @@ +# Makefile for minutes of 2016 + +MINUTES = \ +2017-05-13-annual \ + +common-makefile = ../resources/Makefile-common + +help: + @make -s -f $(common-makefile) help + +all: $(MINUTES) + +%: + make -f $(common-makefile) compile FILE=$* + +annual-job = 2017-05-13-annual +annual-tex = \ + ../annual-reports/annual-report-2017 \ + ../operational-plans/operational-plan-2017 +annual-pdf = \ + ../annual-reports/economical-report-2017 \ + ../annual-reports/auditors-report-2017 +$(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: + make -f $(common-makefile) clean |