aboutsummaryrefslogtreecommitdiffstats
path: root/2018/Makefile
blob: cc17194fb1deeb0c30f17da0e9437942bb4a1306 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
# Makefile for minutes of 2016

MINUTES := $(basename $(shell ls *.tex 2> /dev/null))

common-makefile = ../resources/Makefile-common

help:
	@make -s -f $(common-makefile) help SEND_FILES="$(MINUTES)"

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:
	make -f $(common-makefile) clean