Fix compilation order (#273)
authorBalazs Dezso <deba@inf.elte.hu>
Mon, 27 Apr 2009 20:46:09 +0200
changeset 233e28dbeed635
parent 22 96d9cc65c8db
child 24 2965b19071f7
Fix compilation order (#273)
getting_started.dox
     1.1 --- a/getting_started.dox	Fri Mar 27 05:01:50 2009 +0100
     1.2 +++ b/getting_started.dox	Mon Apr 27 20:46:09 2009 +0200
     1.3 @@ -42,7 +42,7 @@
     1.4  that we are using the installed LEMON).
     1.5  
     1.6  \verbatim
     1.7 -g++ -lemon -o hello_lemon hello_lemon.cc
     1.8 +g++ -o hello_lemon hello_lemon.cc -lemon
     1.9  \endverbatim
    1.10  
    1.11  As a result you will get the exacutable \c hello_lemon in the current
    1.12 @@ -57,7 +57,7 @@
    1.13  You have to issue a command like this.
    1.14  
    1.15  \verbatim
    1.16 -g++ -lemon -I ~/lemon/include -L ~/lemon/lib -o hello_lemon hello_lemon.cc
    1.17 +g++ -o hello_lemon -I ~/lemon/include hello_lemon.cc -L ~/lemon/lib -lemon
    1.18  \endverbatim
    1.19  
    1.20  If everything has gone well, then our program prints out the followings.