From 0dc731d0cfc88efcaa5252ccfe25b25c020b69f1 Mon Sep 17 00:00:00 2001 From: Vasil Zlatanov Date: Wed, 12 Dec 2018 22:57:10 +0000 Subject: Rename report folder --- report/makefile | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100755 report/makefile (limited to 'report/makefile') diff --git a/report/makefile b/report/makefile new file mode 100755 index 0000000..77d8583 --- /dev/null +++ b/report/makefile @@ -0,0 +1,18 @@ +FILES = paper.md \ + metadata.yaml + +OUTPUT = build + +FLAGS = --bibliography=bibliography.bib \ + --csl=bibliography.csl \ + -s \ + -f markdown + +FLAGS_PDF = --template=template.latex + +pdf: + pandoc -o $(OUTPUT)/paper.pdf $(FLAGS) $(FLAGS_PDF) $(FILES) + +clean: + rm build/* + -- cgit v1.2.3-54-g00ecf