default platform: i386 (not m68k)
[gnokii.git] / INSTALL
1
2  TODO: write me!
3
4  For package building see the 'Docs/packaging-howto' file.
5
6 0/      If you got an CVS version
7
8         autoconf
9
10 1/
11         ./configure [ option ]
12
13         where basic options:
14
15                 --prefix=DIR
16                         Install path prefix. Default /usr/local/
17
18                 --without-x
19                         Compile without GTK (X11) programs
20                 
21                 --disable-nls
22                         Set if you don't have/want GNU gettext support
23                 
24                 --enable-security
25                         Set if you want to enable all security features
26
27                 --enable-debug
28                         Set if you want debug code in gnokii
29
30                 --help          
31                         show all options
32
33
34         Good default (example):
35
36                 ./configure --prefix=/usr \
37                             --enable-security
38
39 2/
40         compilation:
41         
42                 make (or make gnokii-debug to create staticlly linked binary
43                         -- mainly for debugging)
44                 groupadd gnokii  - it is really needed
45                 (make dep - if you want/need) 
46                 make install or make install-suid or make install-strip or
47                         make install-ss (suid + strip)
48                 make install-docs
49
50         clean source:
51         
52                 make clean       - standard clean
53                 make distclean   - clean all ./configure outputs
54                                    (after this command you must run
55                                     ./configure again if you need use
56                                     any Makefile)