aboutsummaryrefslogtreecommitdiff
path: root/report/makefile
diff options
context:
space:
mode:
authornunzip <np.scarh@gmail.com>2019-02-04 17:09:04 +0000
committernunzip <np.scarh@gmail.com>2019-02-04 17:09:04 +0000
commit452c2510de3d9ba914fd3c2ba4414d81bdcc6ea7 (patch)
tree799617060e7a9e95fc02ca78c1e32f4f7aa8a5f0 /report/makefile
parent6522466613c5a2951c7979349cdb54bcd0ae7d21 (diff)
downloade4-vision-452c2510de3d9ba914fd3c2ba4414d81bdcc6ea7.tar.gz
e4-vision-452c2510de3d9ba914fd3c2ba4414d81bdcc6ea7.tar.bz2
e4-vision-452c2510de3d9ba914fd3c2ba4414d81bdcc6ea7.zip
Add IEEE structure for report
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..b77aca0
--- /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)/cw2_vz215_np1915.pdf $(FLAGS) $(FLAGS_PDF) $(FILES)
+
+clean:
+ rm build/*
+