build: Remove some unused variables from Makefile.real.
[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 CROSS_COMPILE='armv6j-hardfloat-linux-gnueabi-'
26         export PATH="/usr/cross/arm/bin:$PATH"
27         export CC=${CROSS_COMPILE}gcc
28
29         export LDFLAGS='
30                 -L/usr/sysroot/arm/lib
31                 -L/usr/sysroot/arm/usr/lib
32                 -L/usr/sysroot/arm/usr/lib/glibc/lib
33                 -L/usr/sysroot/arm/usr/local/ssl/lib
34         '
35         autoconf
36         autoheader
37         ./configure --host=arm-linux-gnueabi --prefix /usr/sysroot/arm/usr/local
38         make CROSS_COMPILE=$CROSS_COMPILE
39
40 For details see the user manual:
41
42         http://people.tuebingen.mpg.de/maan/paraslash/manual.html