BSD 4_3 development
authorCSRG <csrg@ucbvax.Berkeley.EDU>
Sun, 30 Mar 1986 08:06:02 +0000 (00:06 -0800)
committerCSRG <csrg@ucbvax.Berkeley.EDU>
Sun, 30 Mar 1986 08:06:02 +0000 (00:06 -0800)
Work on file usr/contrib/emacs/build-install

Synthesized-from: CSRG/cd1/4.3

usr/contrib/emacs/build-install [new file with mode: 0755]

diff --git a/usr/contrib/emacs/build-install b/usr/contrib/emacs/build-install
new file mode 100755 (executable)
index 0000000..ac59cc1
--- /dev/null
@@ -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}