
all:	tst1.dvi
	xdvi tst1.dvi
	dvipdf tst1.dvi >tst1.pdf

tst1.dvi:	tst1.tex eg1.tex
	latex tst1.tex

eg1.tex:	eg1.gp num.data
	gnuplot eg1.gp

clean:
	rm -f *.dvi *.pdf *.log *.aux *~

