
# mk2 -- Make the PDF from postscript, man pages

for dir in ps*
do
	# distill file... dir
	distill $dir/* `echo $dir|sed -e 's/ps/pdf/'`
done
