Change `make cheese` to output to cheese/ directory

And then join pdfs together into cheese.pdf

Signed-off-by: Anna Schumaker <Anna@OcarinaProject.net>
keep-around/eee1f261f507015ac22ca74e66cb1b04ff441e62
Anna Schumaker 7 years ago
parent e669fe9cff
commit edb1d4619d

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

@ -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

Loading…
Cancel
Save