#!/bin/ksh

echo "This script has generated Makefiles for a traditional make process."
echo "If you are using GNU tools, please use './configure' instead."

# We could do other configuration things in this script, but the 
# basic need is to generate Makefiles. We can't leave Makefiles
# in CVS because they would be overwritten by the Makefiles generated
# by GNU automake/autoconf.
for i in `find . -name Makefile.IN`; do cp $i ${i%%.IN}; done

# do the same for gvconfig.h
cp gvconfig.h.IN gvconfig.h
