Initial Commit
[packages] / xemacs-packages / sml-mode / INSTALL
1 SML-MODE shouldn't require any special external support package,
2 as far as I can rememebr.  Just a recent copy of Emacs or XEmacs.
3
4 Installation of the program
5 ===================================
6
7   1. Edit the file `Makefile' to reflect the situation at your site.
8      The only things you have to change is the definition of `lispdir'
9      and `infodir'.  The elisp files will be copied to `lispdir', and
10      the info file to `infodir'.
11
12   2. Have some sorbet.
13
14   3. Type `make install' in the source directory.  This will
15      byte-compile all `.el' files and copy all the
16      `.elc' files into the directory you specified in step 1.
17      It will also copy the info files (and add a corresponding entry to the
18      info-dir file if install-info can be found).
19
20      If you want to install the `.el' files,
21      just type ``make install_el''.
22
23      If you only want to create the compiled elisp files, but don't
24      want to install them, you can type `make elcfiles' instead.
25
26   4. Edit the file `site-start.el' in your emacs lisp directory (usually
27      `/usr/local/share/emacs/site-lisp' or something similar) and enter the
28      contents of the file `sml-mode-startup.el' into it.  It contains
29      a couple of `auto-load's that facilitates the use of sml-mode.
30      Alternatively, you can just use `make install_startup'.
31      If you're only installing it for yourself rather than for the whole system,
32      then use something like `make install_startup startupfile=$HOME/.emacs'.
33
34   5. If you already had copied the pcl-cvs.startup.el file to your
35      site-start.el (or .emacs), you might want to check if it is still correct
36      since autoloads might have been added/removed.
37
38
39 How to make typeset documentation from the TeXinfo manual
40 =========================================================
41
42    If you have TeX installed at your site, you can make a typeset version of
43 the manual typing ``make dvi''.  If you prefer a postscript version of this
44 file, just use ``make postscript''.
45
46
47 #ident @(#)v3_9_5:INSTALL,v 1.1 1999/08/11 20:48:16 monnier Exp