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 /part1/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 'part1/report/makefile')
-rwxr-xr-x | part1/report/makefile | 28 |
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/* - |