diff options
author | nunzip <np.scarh@gmail.com> | 2018-12-12 23:14:44 +0000 |
---|---|---|
committer | nunzip <np.scarh@gmail.com> | 2018-12-12 23:14:44 +0000 |
commit | 7167c720b525b86d689775c58b0be4ec92c8fc4d (patch) | |
tree | c5ab0df21723f161f67f2ac4970434798d569b55 /report/makefile | |
parent | 88ed5d2fec953107584fb53fefd9094dac6dec38 (diff) | |
parent | 7eef0dccc6ff8cfa2e75fa3d940f9a2f38144611 (diff) | |
download | vz215_np1915-7167c720b525b86d689775c58b0be4ec92c8fc4d.tar.gz vz215_np1915-7167c720b525b86d689775c58b0be4ec92c8fc4d.tar.bz2 vz215_np1915-7167c720b525b86d689775c58b0be4ec92c8fc4d.zip |
Merge branch 'master' of git.skozl.com:e4-pattern
Diffstat (limited to 'report/makefile')
-rwxr-xr-x | report/makefile | 18 |
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/* + |