CEDET: Collection of Emacs Development Enviromnent Tools

CEDET is a top-level project containing several individual package for Emacs,
includeing:

   EIEIO - CLOS layer for Emacs Lisp
   Semantic - Parser Infrastructure for Emacs
   Speedbar - Everything browser
   EDE - File manager/ Makefile generator
   COGRE - Connected Graph Editor

You can install all these packagees at once with the CEDET build and
install scripts:

1) Copy source files somewhere.

2) Byte compile

   a) make

   -OR-

   b) make EMACS=<your favorite emacs>

  You might also have trouble with makeinfo.  If you need to upgrade
  makeinfo, you can do this:

  c) make MAKEINFO=/usr/local/bin/makeinfo

  Note: For speedbar, you may also need to byte-compile the version
  of INFO and RMAIL that come with your version of emacs.

  d) make MAKEINFO=echo

  To skip making the doc.

2.1) Build Issues

  If running MAKE fails due to other issues such as bad load def
  files, custom-autoload, incomprehensible run time errors during a byte
  compilation, try these steps, then go back to step 2.

  a) make clean-autoloads
  b) make clean-all

3) Install load hooks into your .emacs file.

;; Load CEDET
(load-file "~/cedet-VERSION/common/cedet.el")
;; Enabling SEMANTIC minor modes.  See semantic/INSTALL for more ideas.
(semantic-load-enable-code-helpers)

4) Configuration:

You can configure how the individual packages load in the above example
by adding settings in the comment section.  Please read individual
INSTALL files for each package for details on configuring them.
See the texinfo manuals for details on more specific configurations.

5) To send bug reports, or participate in discussions on these
   packages, choose a mailing list:

   For Semantic use the mailing list cedet-semantic@sourceforge.net
   via the URL:

   http://lists.sourceforge.net/lists/listinfo/cedet-semantic

   For EIEIO use the mailing list cedet-eieio@sourceforge.net
   via the URL:

   http://lists.sourceforge.net/lists/listinfo/cedet-eieio

   For general discussions on development of these tools, use the
   mailing list cedet-devel@sourceforge.net via the URL:

   http://lists.sourceforge.net/lists/listinfo/cedet-devel

