

all: speechPlatform.pdf

clean:
	rm -rf *.log *.aux *.dvi *.ps *.pdf *.toc

prepare: speechPlatform.pdf
	rm -rf *.log *.aux *.dvi *.ps *.toc

speechPlatform.dvi: speechPlatform.tex
	latex speechPlatform.tex
	latex speechPlatform.tex

speechPlatform.ps: speechPlatform.dvi
	dvips -o speechPlatform.ps speechPlatform.dvi

speechPlatform.pdf: speechPlatform.ps
	ps2pdf speechPlatform.ps speechPlatform.pdf

