From 451c1b5baa76c6bb06aabd6548b83800f7e1f4b7 Mon Sep 17 00:00:00 2001 From: Gustav Eek Date: Tue, 9 May 2017 21:31:17 +0200 Subject: 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. --- 2017/Makefile | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 2017/Makefile (limited to '2017/Makefile') 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 -- cgit v1.2.3