Changes between Version 5 and Version 6 of JP2KAK


Ignore:
Timestamp:
Aug 31, 2007, 4:14:56 PM (17 years ago)
Author:
Mateusz Łoskot
Comment:

Added build steps

Legend:

Unmodified
Added
Removed
Modified
  • JP2KAK

    v5 v6  
    33== Unix/Linux Builds by mloskot ==
    44
    5 The following guide walks through steps required to build Kakadu 6.0 and GDAL with JP2KAK driver support on 32-bit Linux machine. Instructions presented here have been tested under Ubuntu Linux.
     5The following guide walks through steps required to build '''Kakadu 6.0''' and '''GDAL''' with JP2KAK driver support on 32-bit Linux machine. Instructions presented here have been tested under Ubuntu Linux.
    66
    77 * Prerequisites
     
    2222The location ''/usr/local/kakadu-6.0'' will be used as building workspace and also as installation directory, because there is no ''make install'' step when building Kakadu. 
    2323
    24  * Build Kakadu
     24{{{
     25$ cd /usr/local/kakadu-6.0
     26}}}
     27
     28 * Build subtree '''coresys'''
     29
     30{{{
     31$ cd coresys/make
     32$ make -f Makefile-Linux-x86-32-gcc
     33$ cd ../..
     34}}}
     35
     36 * Build subtree '''apps'''
     37
     38{{{
     39cd apps/make
     40$ make -f Makefile-Linux-x86-32-gcc
     41$ cd ../..
     42}}}
     43
     44
     45
     46
     47
    2548
    2649----