diff options
author | Vasil Zlatanov <v@skozl.com> | 2018-12-12 22:57:10 +0000 |
---|---|---|
committer | Vasil Zlatanov <v@skozl.com> | 2018-12-12 22:57:10 +0000 |
commit | 0dc731d0cfc88efcaa5252ccfe25b25c020b69f1 (patch) | |
tree | c64a4cd59410cc3dedea2600f42f8538a5d30ef1 /report/makefile | |
parent | 0a1ad07219daa52419eb3bdfbf435eeb1266e209 (diff) | |
download | vz215_np1915-0dc731d0cfc88efcaa5252ccfe25b25c020b69f1.tar.gz vz215_np1915-0dc731d0cfc88efcaa5252ccfe25b25c020b69f1.tar.bz2 vz215_np1915-0dc731d0cfc88efcaa5252ccfe25b25c020b69f1.zip |
Rename report folder
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/* + |