-all: dvi
+#!/usr/bin/make
 
-dvi: text.tex
-       cp text.tex backup.tex
-       latex text.tex
-       latex text.tex
-       latex text.tex
+all: $(patsubst %.tex,%.pdf,$(wildcard *.tex)) 
+pdf: all
 
-pdf: dvi
-       pdflatex text.tex
+%.pdf: %.tex
+       rubber -fd $<
 
-viewpdf: pdf
-       evince text.pdf
+clean: 
+       rubber -d --clean *.tex
+       rm -f *.tmp
+       rm -f figures/*.pdf
 
-ps: dvi
-       dvips -f < text.dvi  > text.ps
-
-final: dvi
-       dvips -f < text.dvi > final.ps
+viewpdf: all
+       evince *.pdf
 
 spell:
        aspell -c -t --tex-check-comments -b text.tex
 
-clean:
-       cp text.tex backup.tex
-       rm -f text.{blg,bbl,aux,log,dvi,toc,tex.bak,txt,tex~,ps,pdf} warnings
 
+.PHONY: clean all