masterthesis/Makefile

47 lines
1.1 KiB
Makefile

.PHONY: default
MA_NAME="MA-Master"
CA_DOC_NAME="CA-DOC-Master"
SRV_DOC_NAME="SRV-DOC-Master"
LAST_EXPORT=`cat LAST_EXPORT`
default: cleanall render_ma render_ca_doc
render_ma:
pdflatex -output-directory build ${MA_NAME}.tex
bibtex build/${MA_NAME}
pdflatex -output-directory build ${MA_NAME}.tex
pdflatex -output-directory build ${MA_NAME}.tex
render_ca_doc:
pdflatex -output-directory build ${CA_DOC_NAME}.tex
#bibtex build/${CA_DOC_NAME}
#pdflatex -output-directory build ${CA_DOC_NAME}.tex
pdflatex -output-directory build ${CA_DOC_NAME}.tex
render_srv_doc:
pdflatex -output-directory build ${SRV_DOC_NAME}.tex
#bibtex build/${SRV_DOC_NAME}
#pdflatex -output-directory build ${SRV_DOC_NAME}.tex
pdflatex -output-directory build ${SRV_DOC_NAME}.tex
clean:
cd build; rm -v *.aux *.bbl *.blg *.log *.out *.toc
cleanall:
rm -rfv build; mkdir build
viewer_ma:
okular build/${MA_NAME}.pdf
viewer_ca_doc:
okular build/${CA_DOC_NAME}.pdf
viewer_srv_doc:
okular build/${SRV_DOC_NAME}.pdf
show: cleanall render_ma render_ca_doc render_srv_doc viewer_ma viewer_ca_doc viewer_srv_doc
release: cleanall render_ma render_ca_doc render_srv_doc clean