
			Installation Instructions


SUPPORTED PLATFORMS
===================

- GNU/Linux
- Irix 6.5
- OpenBSD 2.6
- Solaris 2.5.1


CONFIGURE OPTIONS:
==================

These options can be passed to the configure script to enable/disable
some cfe features:

--enable-debug		Do not use it unless you know what you're doing.

--disable-doubled-8bit	Disable highlighting of expending bit 8 to bit 9
			on a VGA adapter's font character matrix
			in pseudographics area (0xC0-0xDF).
			
--disable-xterm-colors	Disable xterm color scheme.


INSTALLATION:
=============

For a quick start, type the following in your shell prompt:

	./configure
	make

then, login as root and type:

	make install

or if you want to strip the debugging symbols from the binaries and make them
smaller, you can instead type:

	make install-strip

This will build and install cfe with default parameters.

If you want to customize some compile-time options, you can do the
following. 

1. Look at the CONFIGURE OPTIONS section above for the 
options available. Also run:
 
	./configure --help

to get a complete listing of other options that are available.

2. Run configure with the options you want. For example, if you
want to use the --disable-xterm-colors option, type:

	./configure --disable-xterm-colors

3. Compile. Just type:

	make

4. Login as root and install cfe in your system:

	su root
	make install
