From 1251771fe918f77ea5b4c27bb2947639ee7c6aed Mon Sep 17 00:00:00 2001 From: Gustav Eek Date: Sun, 22 May 2016 18:51:53 +0200 Subject: Yearly meeting minutes, April 17, 2016, added The actual minutes for the meeting are written and added. The annual report was updated in connection to that. Makefiles are also modified: the overall one is updated and the 2016 minutes one is created. Finally also the participants file is updated. --- 2016/Makefile | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 2016/Makefile (limited to '2016/Makefile') diff --git a/2016/Makefile b/2016/Makefile new file mode 100644 index 0000000..48e0643 --- /dev/null +++ b/2016/Makefile @@ -0,0 +1,29 @@ +# Makefile for minutes of 2016 + +MINUTES = \ +2016-04-17-annual \ + +common-makefile = ../resources/Makefile-common + +help: + @make -s -f $(common-makefile) help + +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): + make -f $(common-makefile) compile FILE=$(annual-job) FILES_TEX="$(annual-tex)" FILES_PDF="$(annual-pdf)" + +send: + make -f $(common-makefile) send SEND_FILES="$(MINUTES)" +clean: + make -f $(common-makefile) clean -- cgit v1.2.3 From bbdb2e6b58317aac124c0bf176bd2e67b4ed4413 Mon Sep 17 00:00:00 2001 From: Gustav Eek Date: Mon, 8 May 2017 09:58:12 +0200 Subject: Scanned copies economical and auditors reports for annual 2016 The file *20170508_092252.pdf* contains the scanned copies. Makefieles are modified to correctly derive *economical-report-2016.pdf and *auditors-report-2016.pdf*. --- 2016/Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to '2016/Makefile') diff --git a/2016/Makefile b/2016/Makefile index 48e0643..90e1a91 100644 --- a/2016/Makefile +++ b/2016/Makefile @@ -20,8 +20,10 @@ annual-tex = \ annual-pdf = \ ../annual-reports/economical-report-2016 \ ../annual-reports/auditors-report-2016 -$(annual-job): +$(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)" -- cgit v1.2.3