TARGET=debian.pdf

test: $(TARGET)
	evince $<

%.pdf: %.tex
	xelatex $^

clean:
	rm -f $(TARGET)
	rm -f *.aux *.log *.out *.toc *.nav *.snm

.PHONY: all clean test
