#!/bin/sh

# Author: Ben Wing <ben@xemacs.org>

# Generate correspondence scripts for the various versions of GNU Emacs.
# This generates scripts to move the Lisp files in each version into an
# arrangement corresponding to the layout in 21.3.  This way, all the
# different versions can be compared using CVS.

. ./emacs-config

for x in $emacsversions ; do
echo "Generating make-corr script for GNU Emacs $x"
./make-make-corr-1 $emacsorigroot/emacs-$x $emacsorigroot/emacs-$mostrecent > make-corr-$x
done
