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