#!/bin/csh -fx
#
#Shell script for building and installing Epoch 3.2.

set EMACS=/usr/local/lib/emacs
set BIN=/usr/local/bin

/bin/sed "s;/usr/local/lib/emacs;$EMACS;" < src/paths.h-dist > src/paths.h

(cd etc; make) || exit 1
(cd src; make) || exit 1

if (`pwd` != `(cd $EMACS; pwd)`) then
  mv `pwd` $EMACS
  if ($status) then
    mkdir $EMACS
    echo mv `pwd` to $EMACS failed--using tar to copy.
    tar cf - . | (cd $EMACS; umask 0; tar xf -)
    if ($status) then
      echo tar-copying `pwd` to $EMACS failed.
      exit 1
    endif
  endif
endif

cp $EMACS/etc/{ctags,etags} $BIN
mv $EMACS/src/epoch  $BIN/epoch
rm $EMACS/src/temacs
chmod 777 $BIN/{ctags,etags,epoch}
