LATEX = latex --interaction=nonstopmode #-file-line-error-style default: KrancDoc.ps help: @echo "Type make .ps to build from latex source. Can also make .pdf and .html" clean: rm -rf *.{dvi,ps,aux,log,pdf} %.dvi: %.tex $(LATEX) $< %.ps: %.dvi dvips -o $@ $< %.html: %.tex latex2html -split 3 $< %.pdf: %.tex pdflatex $<