INSTALL
==================

Firstly, run configure 

        ./configure
	
or (if You want  to specify install prefix):

        ./configure --prefix=/usr

If case of error:

	configure: error: cannot find install-sh or install.sh in "." "./.." "./../.."
	
it needs to execute:

	aclocal
	automake -a
	autoconf

And then
	
	./configure

To install the application, type:

        su -c "make install"

