diff options
author | Gustav Eek <gustav@fripost.org> | 2016-05-22 18:51:53 +0200 |
---|---|---|
committer | Gustav Eek <gustav@fripost.org> | 2016-05-22 20:32:32 +0200 |
commit | 1251771fe918f77ea5b4c27bb2947639ee7c6aed (patch) | |
tree | 48e0e1c42207679091b1b8c06e47d27f50e2b81b /2016/Makefile | |
parent | c87eb94c862832dfe2759cbce80dedcead9627e8 (diff) |
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.
Diffstat (limited to '2016/Makefile')
-rw-r--r-- | 2016/Makefile | 29 |
1 files changed, 29 insertions, 0 deletions
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 |