diff options
author | Vasil Zlatanov <v@skozl.com> | 2019-02-21 20:56:40 +0000 |
---|---|---|
committer | Vasil Zlatanov <v@skozl.com> | 2019-02-21 20:56:40 +0000 |
commit | 92ea2898811d9e40b68f75a22a5da32b1c38de78 (patch) | |
tree | f2993db312469bc504e22c8cf605dda4ee4a04ac /report/makefile | |
download | e3-deep-92ea2898811d9e40b68f75a22a5da32b1c38de78.tar.gz e3-deep-92ea2898811d9e40b68f75a22a5da32b1c38de78.tar.bz2 e3-deep-92ea2898811d9e40b68f75a22a5da32b1c38de78.zip |
Add report
Diffstat (limited to 'report/makefile')
-rw-r--r-- | report/makefile | 19 |
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/* + |