masterthesis/Makefile

27 lines
457 B
Makefile
Raw Normal View History

2018-09-03 10:45:10 +02:00
.PHONY: default
2018-05-09 13:05:55 +02:00
NAME=Masterarbeit
LAST_EXPORT=`cat LAST_EXPORT`
2018-09-03 10:45:10 +02:00
default: cleanall render
2018-05-09 13:05:55 +02:00
render:
2018-05-09 13:27:22 +02:00
mkdir build
pdflatex -output-directory build ${NAME}.tex
bibtex build/${NAME}
pdflatex -output-directory build ${NAME}.tex
pdflatex -output-directory build ${NAME}.tex
2018-05-09 13:05:55 +02:00
clean:
2018-09-03 10:45:10 +02:00
cd build; rm -v *.aux *.bbl *.blg *.log *.out *.toc
cleanall:
2018-05-09 13:27:22 +02:00
rm -rfv build
2018-09-03 10:45:10 +02:00
viewer:
2018-05-09 13:27:22 +02:00
okular build/${NAME}.pdf
2018-09-03 10:36:31 +02:00
2018-09-03 10:45:10 +02:00
show: cleanall render viewer
2018-09-05 14:56:41 +02:00
release: cleanall render clean