#!/bin/sh
for i in *.txt
do
b=`basename $i .txt`
echo Making $b.html
./makehtml $i > $b.html
done

make_contents > index.html
