summaryrefslogtreecommitdiff
path: root/report/makefile
blob: fcf357ba9922ddfd58eeb8220c0883debc06db6c (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_deep_learning_vz215.pdf $(FLAGS) $(FLAGS_PDF) $(FILES)

clean:
	rm build/*