aboutsummaryrefslogtreecommitdiff
path: root/report/makefile
diff options
context:
space:
mode:
authorVasil Zlatanov <v@skozl.com>2018-10-18 10:39:54 +0100
committerVasil Zlatanov <v@skozl.com>2018-10-18 10:39:54 +0100
commit6adf7035aff908622ff4622de5669b3ad6461c1e (patch)
tree9adf6fd5b5bbe0e5514340e4cbaf1ade14987b4d /report/makefile
parent0f14698347fe4dad9869e05ea0adf9177e6ba4f9 (diff)
downloadvz215_np1915-6adf7035aff908622ff4622de5669b3ad6461c1e.tar.gz
vz215_np1915-6adf7035aff908622ff4622de5669b3ad6461c1e.tar.bz2
vz215_np1915-6adf7035aff908622ff4622de5669b3ad6461c1e.zip
Add IEEE style pandoc report
Diffstat (limited to 'report/makefile')
-rw-r--r--report/makefile20
1 files changed, 20 insertions, 0 deletions
diff --git a/report/makefile b/report/makefile
new file mode 100644
index 0000000..6359a42
--- /dev/null
+++ b/report/makefile
@@ -0,0 +1,20 @@
+FILES = paper.md \
+ metadata.yaml
+
+OUTPUT = build
+
+FLAGS = --bibliography=bibliography.bib \
+ --csl=bibliography.csl \
+ -s \
+ -f markdown
+
+FLAGS_PDF = --template=template.latex
+
+all: pdf
+
+pdf:
+ pandoc -o $(OUTPUT)/paper.pdf $(FLAGS) $(FLAGS_PDF) $(FILES)
+
+clean:
+ rm build/*
+