Installation Instructions
*************************

Copyright (C) 1994, 1995, 1996, 1999, 2000, 2001, 2002, 2004, 2005 Free
Software Foundation, Inc.

This file is free documentation; the Free Software Foundation gives
unlimited permission to copy, distribute and modify it.

Basic Installation
==================

These are generic installation instructions.


To install the appplication, type the following commands in a console, while in the root directory of this application:

	.config.sh
	cd build
	make
	sudo make install

Explaination
==================

	.config.sh

This script will configure and prepare the compilation and installation of the program.

All needed files will be built in "build" directory.
So you have to go to this directory:

	cd build

Then execute the Makefile, to compile the application (src, doc...)

	make

Then install it all using:

	sudo make install
	
You have to use "sudo" to be able to install the program in a protected directory (which is the case by default and most of the time).
Therefore it will ask for your system password.
If you don't have this password or for any reason you want to install the program in a non-protected directory, refer to the Options below.


Options
==================

You can change the prefix of the installation using:

	.config.sh --prefix="expected_prefix_directory"

By default, it is set to /usr/local.

******************************************************

You can enable debug messages using:

	.config.sh --with-debug

