#
#  Makefile for cool.ps
#
.SUFFIXES: .fig .latex .eps .gif

tentun.dvi:	tentun.tex
		latex tentun.tex
		latex tentun.tex
		latex tentun.tex

tentun.pdf:	tentun.dvi
		dvipdf tentun.dvi tentun.pdf

all:		tentun.pdf
		echo	'done'

planif:		planif.tex
		latex planif.tex

#
# Always clean up...
#
clean:		
	rm -f *.log *.toc *.aux *~ *.pdf *.dvi
	rm -f ./*/*.latex ./*/*.aux ./*/*~
	rm -f *.idx *.ind
	rm -f *.ilg *.lof
	rm -f ./*/*.bak
#	rm -f $(PICTURES_GIF) 
#	rm -f $(PICTURES_EPS)

really_clean:	clean 
	rm -f *.ps *.dvi
	rm -f *.html html.err

