diff -r 7ceab500e1f6 -r 1aa71600000c doc/getstart.dox --- a/doc/getstart.dox Fri Jul 01 10:33:27 2005 +0000 +++ b/doc/getstart.dox Fri Jul 01 16:10:46 2005 +0000 @@ -27,7 +27,7 @@ \section downloadLEMON How to download LEMON You can download LEMON from the LEMON web site: -http://lemon.cs.elte.hu/dowload.html. +http://lemon.cs.elte.hu/download.html. There you will find released versions in form of .tar.gz files. If you want a developer version (for example you want to contribute in developing the library LEMON) then you might want to use our Subversion @@ -38,7 +38,7 @@ \section installLEMON How to install LEMON -In order to install LEMON you have to do the following +In order to install LEMON you have to do the following steps. Download the tarball (named lemon-x.y.z.tar.gz where \c x,\c y and \c z are numbers indicating the version of the library: in our example @@ -50,15 +50,20 @@ cd lemon-0.3.1 ./configure make -make check #(This is optional, but recomended. It runs a bunch of tests.) +make check #(This is optional, but recommended. It runs a bunch of tests.) make install \endverbatim These commands install LEMON under \c /usr/local (you will need root privileges to be able to install to that directory). If you want to install it to some other place, then -pass the \c --prefix=DIR flag to \c ./configure. In what follows -we will assume that you were able to install to directory +pass the \c --prefix=DIRECTORY flag to \c ./configure, for example: + +\verbatim +./configure --prefix=/home/user1/lemon +\endverbatim + +In what follows we will assume that you were able to install to directory \c /usr/local, otherwise some extra care is to be taken to use the library.