# This is a makefile for the iAthena guide.


all: igraphics.pdf  igraphics.dvi  igraphics.ps 

TEXTFILES = igraphics.tex editors.tex intro.tex utilities.tex backpage.tex

%.pdf: %.tex $(TEXTFILES)
	pdflatex $*
# pdflatex doesn't like what this document does: (october 4, 2003.)
%.pdf2: %.dvi $(TEXTFILES)
	dvipdf $*
	touch $@

%.dvi: %.tex  $(TEXTFILES)
	latex $*

%.ps: %.dvi  $(TEXTFILES)
	dvips -o $@ $<


%.html: %.tex  $(TEXTFILES)
	latex2html  $*
	touch $@

clean: 
	rm -f guide.pdf guide.ps guide.dvi *.aux *.log
