From: CSRG Date: Sun, 30 Mar 1986 08:06:02 +0000 (-0800) Subject: BSD 4_3 development X-Git-Tag: BSD-4_3~335 X-Git-Url: https://git.subgeniuskitty.com/unix-history/.git/commitdiff_plain/1a462be3d42c1df9950ada5ba4204bfdd74cf570 BSD 4_3 development Work on file usr/contrib/emacs/build-install Synthesized-from: CSRG/cd1/4.3 --- diff --git a/usr/contrib/emacs/build-install b/usr/contrib/emacs/build-install new file mode 100755 index 0000000000..ac59cc1044 --- /dev/null +++ b/usr/contrib/emacs/build-install @@ -0,0 +1,22 @@ +#!/bin/csh -fx +# +#Shell script for building and installing Emacs. + +set EMACS=/usr/new/lib/emacs +set BIN=/usr/new + +(cd etc; make) || exit 1 +(cd src; make) || exit 1 + +# you might want to change the next part if you don't want multiple copies +# of these files on one system + +mkdir $EMACS/{etc,info,lisp} +cp etc/* $EMACS/etc +cp info/* $EMACS/info +cp lisp/* $EMACS/lisp + +cp $EMACS/etc/{ctags,etags} $BIN +mv $EMACS/src/xemacs $BIN/emacs +rm $EMACS/src/temacs +chmod 777 $BIN/{ctags,etags,emacs}