all:	latexall ps pdf
	echo "FINISH!"
latexall:
	latex thesis.tex
	bibtex thesis
	makeindex thesis.idx
	latex thesis.tex
	latex thesis.tex
latex:
	latex thesis.tex
bibtex:
	bibtex thesis
ps:
	dvips -t a4 -o thesis.ps thesis.dvi
pdf:
	ps2pdf13 -sPAPERSIZE=a4 thesis.ps thesis.pdf
view:
	xpdf thesis.pdf&
clean:
	rm -f *.pdf *.dvi *.log *.aux
edit:
	texmaker *.tex jernejvicic-doc.bib Makefile&
