

all: documentation.pdf

documentation.pdf: *.tex Makefile
		pdflatex template.tex
		rm -rf *.out
		rm -rf *.log
		rm -rf *.aux
		mv template.pdf documentation.pdf

clean:
	rm -rf documentation.pdf
