COIN-OR::LEMON - Graph Library

Ticket #342: 342-2-272781e710d9.patch

File 342-2-272781e710d9.patch, 3.1 KB (added by Peter Kovacs, 14 years ago)
  • INSTALL

    # HG changeset patch
    # User Peter Kovacs <kpeter@inf.elte.hu>
    # Date 1265974370 -3600
    # Node ID 272781e710d9cd5d5159453e6288d86037c1bf5a
    # Parent  2ffb7e5556f9abb71c21836034e9d79eae51bf14
    Improve README and INSTALL (#342)
    
    diff --git a/INSTALL b/INSTALL
    a b  
    11Installation Instructions
    22=========================
    33
    4 Since you are reading this I assume you already obtained one of the release
     4Since you are reading this, I assume you already obtained one of the release
    55tarballs and successfully extracted it. The latest version of LEMON is
    66available at our web page (http://lemon.cs.elte.hu/).
    77
     
    99while the other is based on "cmake". This file contains instructions only for
    1010the former one, which is the recommended build environment on Linux, Mac OSX
    1111and other unices or if you use Cygwin on Windows. For cmake installation
    12 instructions visit http://lemon.cs.elte.hu.
     12instructions, visit http://lemon.cs.elte.hu.
    1313
    14 In order to install LEMON from the extracted source tarball you have to
     14In order to install LEMON from the extracted source tarball, you have to
    1515issue the following commands:
    1616
    1717   1. `cd lemon-x.y.z'
    1818
    19       This command changes to the directory which was created when you
     19      This command changes to the directory that was created when you
    2020      extracted the sources. The x.y.z part is a version number.
    2121
    2222   2. `./configure'
     
    4747
    4848      This command installs the documentation under share/doc/lemon/docs. The
    4949      generated documentation is included in the tarball. If you want to
    50       generate it yourself, then run `make html'. Note that for this you need
     50      generate it yourself, then run `make html'. Note that for this, you need
    5151      to have the following programs installed: Doxygen, Graphviz, Ghostscript,
    5252      Latex.
    5353
     
    5555Configure Options and Variables
    5656===============================
    5757
    58 In step 2 you can customize the actions of configure by setting variables
     58In step 2, you can customize the actions of configure by setting variables
    5959and passing options to it. This can be done like this:
    6060`./configure [OPTION]... [VARIABLE=VALUE]...'
    6161
     
    6868
    6969CXXFLAGS='flags'
    7070
    71   Pass the 'flags' to the compiler. For example CXXFLAGS='-O3 -march=pentium-m'
     71  Pass the 'flags' to the compiler. For example, CXXFLAGS='-O3 -march=pentium-m'
    7272  turns on generation of aggressively optimized Pentium-M specific code.
    7373
    7474--prefix=PREFIX
    7575
    76   Set the installation prefix to PREFIX. By default it is /usr/local.
     76  Set the installation prefix to PREFIX. By default, it is /usr/local.
    7777
    7878--enable-tools
    7979
  • README

    diff --git a/README b/README
    a b  
    1717
    1818   Copying, distribution and modification conditions and terms.
    1919
     20NEWS
     21
     22   News and version history.
     23
    2024INSTALL
    2125
    2226   General building and installation instructions.
     
    3337
    3438   Some example programs to make you easier to get familiar with LEMON.
    3539
     40scripts/
     41
     42   Scripts that make it easier to develop LEMON.
     43
    3644test/
    3745
    3846   Programs to check the integrity and correctness of LEMON.