Remove non-free old and crusty clearcase pkg
[packages] / xemacs-packages / pcomplete / INSTALL
1 Installing Pcomplete
2 ====================
3
4 1. Edit the file `Makefile' in the directory containing the Pcomplete
5    sources to reflect the location of certain Emacs dircetories at
6    your site.  The only things you really have to change is the
7    definitions of `lispdir'.  The elisp files will be copied to
8    `lispdir'.
9
10 2. Type `make install' in the directory containing the Pcomplete
11    sources.  This will byte-compile all of the `.el' files and copy
12    both the source and compiled versions to the directories specified
13    in the previous step.
14
15    If you only want to create the compiled elisp files, but don't want
16    to install them, you can type just `make' instead.
17
18 3. Add the directory into which Pcomplete was installed to your
19    `load-path' variable.  This can be done by adding the following
20    line to your .emacs file:
21
22      (add-to-list 'load-path "/usr/local/share/emacs/site-lisp/pcomplete")
23
24    The actual directory on your system may differ.
25
26 4. To install Pcomplete privately, edit your .emacs file; to install
27    Pcomplete site-wide, edit the file `site-start.el' in your
28    site-lisp directory (usually `/usr/local/share/emacs/site-lisp' or
29    something similar).  In either case enter the following line into
30    the appropriate file:
31
32      (load "pcmpl-auto")
33
34 5. Restart Emacs.