The requirements:
==================

You will need these components to compile speechd: 
    - glib 1.2
    - pthreads
    - libasound1 (0.5.8)
    - gcc and GNU make.

Building speechd:
=================

To compile the whole project, including speechd server, all modules
and clients, simply extract the distribution archive and change to 
speechd-<version> directory and run "make all" command as follows:

 $ tar -xzvf speechd-<version>.tar.gz
 $ cd speechd-<version>
 $ make all
 
When everythink worked ok, you can install all the parts to the default
path by running:

 $ make install

Building in more detail:
========================

The hierarchy of Makefiles is used to build each of the parts. The top
level Makefile allows you to compile some extra parts of the project.
These are:

    - doc ........ build documentation in all supported formats
                   (see doc/README for more information)
    - server ..... build speachd server - this is the same as
                   cd src/server; make all
    - modules .... build all speachd modules - this is the same as
                   cd src/modules; make all
    - clients .... build all clients - this is the same as
                   cd src/clients; make all
    - clean ...... remove all files except the sources (does not
                   clean documentation)
    - all ........ build server, modules and clients

    