diff options
Diffstat (limited to 'part1/report/makefile')
| -rwxr-xr-x | part1/report/makefile | 28 | 
1 files changed, 28 insertions, 0 deletions
| diff --git a/part1/report/makefile b/part1/report/makefile new file mode 100755 index 0000000..4af6952 --- /dev/null +++ b/part1/report/makefile @@ -0,0 +1,28 @@ +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/* + | 
