diff options
Diffstat (limited to '2018/Makefile')
| -rw-r--r-- | 2018/Makefile | 19 | 
1 files changed, 18 insertions, 1 deletions
diff --git a/2018/Makefile b/2018/Makefile index ab9586a..974d85e 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,22 @@ 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-plans/notes-plan-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 $@) + + +  send:  	make -f $(common-makefile) send SEND_FILES="$(MINUTES)"  clean:  | 
