aboutsummaryrefslogtreecommitdiff
path: root/report/makefile
diff options
context:
space:
mode:
Diffstat (limited to 'report/makefile')
-rwxr-xr-xreport/makefile18
1 files changed, 18 insertions, 0 deletions
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/*
+