NAME = communication_between_desktop_and_web_applications

html:
	rst2html ${NAME}.rst ${NAME}.html

pdf:
	rst2pdf ${NAME}.rst -o ${NAME}.pdf

latex:
	rst2newlatex ${NAME}.rst ${NAME}.tex
	pdflatex ${NAME}.tex
	pdflatex ${NAME}.tex

clean:
	rm -f ${NAME}.aux ${NAME}.html ${NAME}.log ${NAME}.out ${NAME}.pdf ${NAME}.tex

