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)/cw1_vz215_np1915.pdf $(FLAGS) $(FLAGS_PDF) $(FILES) clean: rm build/*