aboutsummaryrefslogtreecommitdiff
path: root/part1/report/makefile
diff options
context:
space:
mode:
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/*
-