* ... - new cfgreader.c/CFG_GetForeach()
[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 (Xwin) 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-gettext
38
39 2/
40         compilation:
41         
42                 make 
43                 groupadd gnokii  - it is really needed
44                 (make dep - if you want/need) 
45                 make install
46                 make install-docs
47
48         clean source:
49         
50                 make clean       - standard clean
51                 make distclean   - clean all ./configure outputs
52                                    (after this command you must run
53                                     ./configure again if you need use
54                                     any Makefile)