aboutsummaryrefslogtreecommitdiffstats
path: root/annual-meetings/motions/Makefile
blob: 5dc2426e134d06c7be8168f22300e440c2aa9ec7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
PREFIX = motions
TEX = $(addsuffix _.tex, $(basename $(wildcard *.mdwn)))
PDF = $(addprefix $(PREFIX)-, $(subst .main.tex,.pdf,$(wildcard *.main.tex)))
ALL = $(TEX) $(PDF)

PREAMBLE = preamble_.tex acronyms_.tex attendants_.tex

print:
	echo $(ALL)

all: $(ALL)

%_.tex: %.mdwn
	cat < $< | sed -e 's/SCB/\\scb\\/g' -e 's/^$$/\\mypar\n/' | pandoc -f markdown -t latex > $@

motions-%.pdf: %.main.tex $(TEX) $(PREAMBLE)
	pdflatex -jobname=$(basename $@) $<

clean:
	rm -f $(ALL)

$(PREAMBLE): %_.tex: ../../preamble/%.tex
	sed 's/..\/preamble\/\([a-z]*\)/\1_/g' < $< > $@