aft.c: Use correct format string for error output.
[paraslash.git] / INSTALL
1 Any knowledge of how to work with mouse and icons is not required.
2
3 Installing osl
4 ~~~~~~~~~~~~~~
5         git clone git://git.tuebingen.mpg.de/osl
6         cd osl && make && sudo make install
7         (see http://people.tuebingen.mpg.de/maan/osl/)
8
9 Installing paraslash from tarball
10 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
11         ./configure && make && sudo make install
12
13 Installing paraslash from git
14 ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
15         autoconf && autoheader && make && sudo make install
16
17 Example for cross-compiling
18 ~~~~~~~~~~~~~~~~~~~~~~~~~~~
19         export CROSS_COMPILE='armv6j-hardfloat-linux-gnueabi-'
20         export PATH="/usr/cross/arm/bin:$PATH"
21         export CC=${CROSS_COMPILE}gcc
22
23         export LDFLAGS='
24                 -L/usr/sysroot/arm/lib
25                 -L/usr/sysroot/arm/usr/lib
26                 -L/usr/sysroot/arm/usr/lib/glibc/lib
27                 -L/usr/sysroot/arm/usr/local/ssl/lib
28         '
29         autoconf
30         autoheader
31         ./configure --host=arm-linux-gnueabi --prefix /usr/sysroot/arm/usr/local
32         make CROSS_COMPILE=$CROSS_COMPILE
33
34 For details see the user manual:
35
36         http://people.tuebingen.mpg.de/maan/paraslash/manual.html