diff options
author | Gustav Eek <gustav.eek@fripost.org> | 2019-05-05 11:00:06 +0200 |
---|---|---|
committer | Gustav Eek <gustav.eek@fripost.org> | 2019-05-05 11:00:06 +0200 |
commit | a2bdca22930aca508f42e5d0ece63eab2ac286d1 (patch) | |
tree | 601f770f36201c0a84feb075bd39e2ffa9500a8c /annual-meetings/Makefile | |
parent | 0e578f49ab5c47b5b2722bfa491aa3c8099978fb (diff) |
Annual minutes. Inital
Template 2019-05-05-annual.tex and Makefile added
Diffstat (limited to 'annual-meetings/Makefile')
-rw-r--r-- | annual-meetings/Makefile | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/annual-meetings/Makefile b/annual-meetings/Makefile new file mode 100644 index 0000000..9814f1a --- /dev/null +++ b/annual-meetings/Makefile @@ -0,0 +1,37 @@ +# Makefile for minutes of 2016 + +MINUTES = \ +2019-05-05-annual \ + +common-makefile = ../resources/Makefile-common + +help: + @make -s -f $(common-makefile) help + +all: $(MINUTES) + +%: + make -f $(common-makefile) compile FILE=$* + +annual-job = 2019-05-05-annual +annual-tex = \ + 2019-05-05-annual \ +# ../annual-reports/annual-report-2019 \ +# operational-policy-2018_ \ +# ../operational-plans/operational-plan-2019 +annual-pdf = \ +# ../annual-reports/economical-report-2019 \ +# ../annual-reports/auditors-report-2019 + +$(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-2019_.tex: ../by-laws/operational-policy-2019.tex + sed -e "s/\\\(.*\)section\*{/\\sub\1section{/g" < $< > $@ + +send: + make -f $(common-makefile) send SEND_FILES="$(MINUTES)" +clean: + make -f $(common-makefile) clean |