	./configure
	# build what need to be built
	make
	# log as superuser
	su
	# create the database
	make database
	# create the configuration file
	make conf
	# install the backend scripts and the translation files
	make install

	
	# OR do all of the above all at once
	./configure
	su -c "make savane"

Then, you must plug Savane into Apache. Exemple if you want to install Savane
at yourdomain/savane: 

  Alias /savane $path_to_savane/frontend/php

  <Directory $path_to_savane/frontend/php>
      # Pure apache conf:
      SetEnv SAVANE_CONF /etc/savane
      Options SymLinksIfOwnerMatch
      AllowOverride None
      #Necessary with apache2: AcceptPathInfo On
      ErrorDocument 404 /savane/404.php
      Order allow,deny
      Allow from all

      # Configure some specials urls:
      <Files u>
          ForceType application/x-httpd-php
      </Files>
      <Files us>
          ForceType application/x-httpd-php
      </Files>
      <Files users>
          ForceType application/x-httpd-php
      </Files>
      <Files projects>
          ForceType application/x-httpd-php
      </Files>
      <Files pr>
          ForceType application/x-httpd-php
      </Files>
      <Files p>
          ForceType application/x-httpd-php
      </Files>
      <Files file>
          ForceType application/x-httpd-php
      </Files>

      # Restrict access to testconfig
      <Files testconfig.php>
          Order Deny,Allow
          Allow from 127.0.0.1
          Deny from All
      </Files>
  </Directory>
  # Restrict access into include/
  <Directory $path_to_savane/frontend/php/include>
	Order Allow,Deny
	Deny from all
  </Directory>
	
If you use the backend, read also etc/README.

	# Afterwards, you should check 
	# http://127.0.0.1/savane/testconfig.php

(please read carefully INSTALL.verbose for a more complete guide)
