diff options
| author | Gustav Eek <gustav.eek@fripost.org> | 2018-06-06 09:56:47 +0200 | 
|---|---|---|
| committer | Gustav Eek <gustav.eek@fripost.org> | 2018-06-06 09:56:47 +0200 | 
| commit | cee303fdda54053d52a18707140a59544ea1b4cb (patch) | |
| tree | 5be3289f9bf8bdba45e3bc6a06bb6fdd926e3367 /2018/Makefile | |
| parent | 2f55af15da3d337bbd82ee7515540ed091ba67ed (diff) | |
| parent | 37fea3df2309c657d59f247de1ead0658072f0a7 (diff) | |
Merge branch '2018-05-06-annual'
Diffstat (limited to '2018/Makefile')
| -rw-r--r-- | 2018/Makefile | 20 | 
1 files changed, 19 insertions, 1 deletions
diff --git a/2018/Makefile b/2018/Makefile index ab9586a..6c4317d 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,23 @@ 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-policy-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 $@) + +operational-policy-2018_.tex: ../by-laws/operational-policy-2018.tex +	sed -e "s/\\\(.*\)section\*{/\\sub\1section{/g" < $< > $@ +  send:  	make -f $(common-makefile) send SEND_FILES="$(MINUTES)"  clean:  | 
