.PHONY: all clean

all: cheatsheet.pdf

clean:
	rm -f cheatsheet.aux
	rm -f cheatsheet.log
	rm -f cheatsheet.pdf

cheatsheet.pdf: cheatsheet.tex
	pdflatex $<
