TEX=rubber -d
TEXs=$(wildcard *.tex)
PDFs=$(TEXs:.tex=.pdf)
all: $(PDFs)
%.pdf: %.tex
	$(TEX) $<
