Archived
1
Fork 0
This repository has been archived on 2025-04-09. You can view files and clone it, but cannot push or open issues or pull requests.
msc-thesis/thesis/Makefile
2014-04-29 15:31:06 +02:00

26 lines
867 B
Makefile

.PHONY: thesis fast images
# We don want to pollute the root dir, so we use a build dir
# http://tex.stackexchange.com/questions/12686/how-do-i-run-bibtex-after-using-the-output-directory-flag-with-pdflatex-when-f
thesis:
mkdir -p build
cp references.bib build/
pdflatex -output-directory=build thesis.tex
cd build; bibtex thesis
pdflatex -output-directory=build thesis.tex
pdflatex -output-directory=build thesis.tex
cp build/thesis.pdf ./
fast:
mkdir -p build
pdflatex -output-directory=build thesis.tex
cp build/thesis.pdf ./
images:
mkdir -p build
pdflatex -output-directory=build images.tex
pdflatex -output-directory=build images.tex
scp build/images.pdf moerman@stitch.science.ru.nl:~/wvlt_images.pdf
ssh moerman@stitch.science.ru.nl 'pdf2svg wvlt_images.pdf wvlt_images.svg'
scp moerman@stitch.science.ru.nl:~/wvlt_images.svg ./images.svg