
#! /bin/sh
for f in ./config.*; do
rm -f $f
done
if [ -e src/Makevars ]; then
rm -f src/Makevars
fi
rm -f model.bug
exit 0
 
