Change `make cheese` to output to cheese/ directory

And then join pdfs together into cheese.pdf

Signed-off-by: Anna Schumaker <Anna@OcarinaProject.net>
Este commit está contenido en:
Anna Schumaker 2016-03-14 13:50:24 -04:00
padre e669fe9cff
commit edb1d4619d
Se han modificado 2 ficheros con 6 adiciones y 3 borrados

Ver fichero

@ -5,7 +5,7 @@ stages:
build:
stage: build
script:
- make
- make cheese
artifacts:
paths:
- *.pdf
- cheese.pdf

Ver fichero

@ -5,7 +5,10 @@ TEX = latexmk -recorder -pdf
$(TEX) $<
cheese:
$(TEX) *.tex
$(TEX) -outdir=cheese/ *.tex
pdfjoin -o cheese.pdf cheese/*.pdf
clean:
latexmk -C
rm -r cheese/
rm cheese.pdf