aboutsummaryrefslogtreecommitdiff
path: root/INSTALL
blob: 2c7bcd01f91f55117580382be8cf87a99448cebd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
-- INSTALL for libdivsufsort


Requirements:
=============

  * CMake version 2.4.2 or newer (http://www.cmake.org/)
  * A C compiler
  * Make


Compilation and Installation (with Unix Makefiles):
===================================================

  1. Create a 'build' directory in the package source directory.

    $ cd libdivsufsort-?.?.?
    $ mkdir build
    $ cd build

  2. Configure the package for your system.

    $ cmake -DCMAKE_BUILD_TYPE="Release" -DCMAKE_INSTALL_PREFIX="/usr/local" ..

  3. Compile the package.

    $ make

  4. Install the library and header files.

    # make install