getting_started.dox
changeset 19 9196fcd0d4d6
parent 18 a291609dad52
child 20 3ffc47b666b1
     1.1 --- a/getting_started.dox	Thu Nov 06 16:55:09 2008 +0100
     1.2 +++ b/getting_started.dox	Mon Feb 02 11:06:19 2009 +0100
     1.3 @@ -21,7 +21,8 @@
     1.4  [PAGE]hello_lemon[PAGE] Compile Your First Code
     1.5  
     1.6  First of all you have to install LEMON on your system (see
     1.7 -\ref install for instructions).
     1.8 +<a href="http://lemon.cs.elte.hu/trac/lemon/wiki/InstallGuide"><b>our
     1.9 +web page</b></a> for instructions).
    1.10  After that you can paste the following code segment into a file
    1.11  <tt>hello_lemon.cc</tt> to have a first working program that uses LEMON.
    1.12  
    1.13 @@ -41,7 +42,7 @@
    1.14  that we are using the installed LEMON).
    1.15  
    1.16  \verbatim
    1.17 -g++ -lemon hello_lemon.cc -o hello_lemon
    1.18 +g++ -lemon -o hello_lemon hello_lemon.cc
    1.19  \endverbatim
    1.20  
    1.21  As a result you will get the exacutable \c hello_lemon in the current
    1.22 @@ -56,7 +57,7 @@
    1.23  You have to issue a command like this.
    1.24  
    1.25  \verbatim
    1.26 -g++ -lemon -I ~/lemon/include -L ~/lemon/lib hello_lemon.cc -o hello_lemon
    1.27 +g++ -lemon -I ~/lemon/include -L ~/lemon/lib -o hello_lemon hello_lemon.cc
    1.28  \endverbatim
    1.29  
    1.30  If everything has gone well, then our program prints out the followings.