aboutsummaryrefslogtreecommitdiff
path: root/part1/report/makefile
diff options
context:
space:
mode:
authorVasil Zlatanov <v@skozl.com>2018-12-12 22:56:49 +0000
committerVasil Zlatanov <v@skozl.com>2018-12-12 22:56:49 +0000
commit0a1ad07219daa52419eb3bdfbf435eeb1266e209 (patch)
tree41da7cd1f9a1c64e91ade3166d5be9d705e27d0f /part1/report/makefile
parent1f51ef4319131b2a0d69d710e9226bc9d60a41b4 (diff)
downloadvz215_np1915-0a1ad07219daa52419eb3bdfbf435eeb1266e209.tar.gz
vz215_np1915-0a1ad07219daa52419eb3bdfbf435eeb1266e209.tar.bz2
vz215_np1915-0a1ad07219daa52419eb3bdfbf435eeb1266e209.zip
Remove part1
Diffstat (limited to 'part1/report/makefile')
-rwxr-xr-xpart1/report/makefile28
1 files changed, 0 insertions, 28 deletions
diff --git a/part1/report/makefile b/part1/report/makefile
deleted file mode 100755
index 4af6952..0000000
--- a/part1/report/makefile
+++ /dev/null
@@ -1,28 +0,0 @@
-FILES = paper.md \
- metadata.yaml
-
-OUTPUT = build
-
-FLAGS = --bibliography=bibliography.bib \
- --csl=bibliography.csl \
- -s \
- -f markdown
-
-FLAGS_PDF = --template=template.latex
-
-all: pdf code
-
-code:
- echo '\small\pagenumbering{gobble}' > build/code.aux
- echo '~~~~ {.python .numberLinese}' >> build/code.aux
- cat ../train.py >> build/code.aux
- echo -n '~~~~' >> build/code.aux
- pandoc -V geometry:margin=5em \
- -o build/code.pdf build/code.aux
- pdfjoin build/paper.pdf build/code.pdf -o build/cw1_vz215_np1915.pdf
-pdf:
- pandoc -o $(OUTPUT)/paper.pdf $(FLAGS) $(FLAGS_PDF) $(FILES)
-
-clean:
- rm build/*
-