diff options
| author | nunzip <np.scarh@gmail.com> | 2019-03-04 11:38:26 +0000 | 
|---|---|---|
| committer | nunzip <np.scarh@gmail.com> | 2019-03-04 11:38:26 +0000 | 
| commit | bbffa52ed893bfca3edc016a05f5b293b171ccea (patch) | |
| tree | fb077ce7ac71e6232faf25d13ac8051d6ef4ef8f /report/makefile | |
| parent | 010848a0311988dbf317dc1ce857f2a3474b36c3 (diff) | |
| download | e4-gan-bbffa52ed893bfca3edc016a05f5b293b171ccea.tar.gz e4-gan-bbffa52ed893bfca3edc016a05f5b293b171ccea.tar.bz2 e4-gan-bbffa52ed893bfca3edc016a05f5b293b171ccea.zip | |
Report
Diffstat (limited to 'report/makefile')
| -rw-r--r-- | report/makefile | 19 | 
1 files changed, 19 insertions, 0 deletions
| diff --git a/report/makefile b/report/makefile new file mode 100644 index 0000000..636d2f8 --- /dev/null +++ b/report/makefile @@ -0,0 +1,19 @@ +FILES = paper.md \ +		metadata.yaml + +OUTPUT = build + +FLAGS = --bibliography=bibliography.bib \ +		--csl=bibliography.csl \ +		-s \ +		-f markdown + +FLAGS_PDF = --template=template.latex + +pdf: +	mkdir -p $(OUTPUT) +	pandoc -o $(OUTPUT)/cw1_vz215_np1915.pdf $(FLAGS) $(FLAGS_PDF) $(FILES) + +clean: +	rm build/* + | 
