
set -e 

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


# arch-tag: Tom Lord Fri Mar 25 13:33:15 2005 (archreg/=update)
