aboutsummaryrefslogtreecommitdiff
path: root/report/makefile
diff options
context:
space:
mode:
authorVasil Zlatanov <v@skozl.com>2019-02-04 17:27:00 +0000
committerVasil Zlatanov <v@skozl.com>2019-02-04 17:27:00 +0000
commite6799b4716e54130deb06cec098ee62984dbfab4 (patch)
tree1cd465d9ae23839b95974f271e16e4f770eac304 /report/makefile
parent45407375ed4cf47703d4593b19248840daf5d179 (diff)
parent9bab0b9fcc3a71591f2093db980f19e5ecaed447 (diff)
downloade4-vision-e6799b4716e54130deb06cec098ee62984dbfab4.tar.gz
e4-vision-e6799b4716e54130deb06cec098ee62984dbfab4.tar.bz2
e4-vision-e6799b4716e54130deb06cec098ee62984dbfab4.zip
Merge branch 'master' of skozl.com:e4-vision
Diffstat (limited to 'report/makefile')
-rw-r--r--report/makefile19
1 files changed, 19 insertions, 0 deletions
diff --git a/report/makefile b/report/makefile
new file mode 100644
index 0000000..636d2f8
--- /dev/null
+++ b/report/makefile
@@ -0,0 +1,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/*
+