#! /bin/sh
for i in $@; do
  sed -e "/FONT .*/s/-normal-r-/-precalc-r-/" <$i >$i.tmp
  sed -e "/WEIGHT_NAME .*/s/normal/precalc/" <$i.tmp >$i
  rm -f $i.tmp
done
