summaryrefslogtreecommitdiff
path: root/report/makefile
blob: ec6b6e8ded38ddb5f847eba54f7cc8a4c0d0991f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
FILES = paper.md \
		metadata.yaml

OUTPUT = build

FLAGS = --bibliography=bibliography.bib \
		--csl=bibliography.csl \
		-s \
		-f markdown

FLAGS_PDF = --template=template.latex

pdf:
	mkdir -p $(OUTPUT)
	pandoc -o $(OUTPUT)/cw_interim_vz215.pdf $(FLAGS) $(FLAGS_PDF) $(FILES)

clean:
	rm build/*