Codebase list anyremote / upstream/5.1.1+dfsg INSTALL
upstream/5.1.1+dfsg

Tree @upstream/5.1.1+dfsg (Download .tar.gz)

INSTALL @upstream/5.1.1+dfsgraw · history · blame

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

I suggest to read the documentation in doc-html directory before compilation/install.

Well, nothing special ...

Run configure 

        ./configure

To compile the code, type:

        make


To install the application, type:

        su -c "make install"


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
	make