
set -e 

if test $# -eq 0 ; then
  for f in [a-z]*.txt ; do
    rm -f ${f%.txt}.html
    awiki -N ../../../gnuarch.css -n ../../../top-nav.txt -r ../../.. $f > ${f%.txt}.html
  done
else
  for f in "$@" ; do
    rm -f ${f%.txt}.html
    awiki -N ../../../gnuarch.css -n ../../../top-nav.txt -r ../../.. $f > ${f%.txt}.html
  done
fi


# arch-tag: Tom Lord Thu Mar  3 07:57:10 2005 (librification-notes/=update)
