Make the fact that the time is shown in hours and minutes more explicit.
[kdegames.git] / ksudoku / INSTALL
blob5fc54e6c5ba20bb66253a0cd066e8cceb727a217
1 Basic Installation
2 ==================
4 REQUIREMENTS :
5         - open gl library (also header files)  - mesa3d.org
6         - glu library (also header files) - mesa3d.org
7         - kde headers and libs
10 FAST INSTALLATION
11 as root:
12 ./fastinstall.sh
13 INSTALLATION
16 1. Open a shell in project directory (the one where this file is located)
17 2. Ectract project tar -xvvzf ksudoku-0.3.tar.gz
18 2. Run "./configure --prefix=`kdeconfig --prefix`"
19    (will install the program in /usr/local/kde, if you want to install
20    in /usr run "./configure --prefix=/usr")
21 3. Run "make"
22 4. Run "make install" as root.
23 5. Run "ksudoku" (if does not start check point 2)
26 ** Building and installing **
28 * Build the makefiles with "cmake ."
29   (or better: create a directory (say build), and run in 
30   that dir "cmake ..")
31 * to change settings run "make edit_cache" (optional)
32 * run "make"
33 * run "make install"
35 * To clean, use "make clean"
37 For more make targets run "make help"
39 ##==##
43    These are generic installation instructions.
45    The `configure' shell script attempts to guess correct values for
46 various system-dependent variables used during compilation.  It uses
47 those values to create a `Makefile' in each directory of the package.
48 It may also create one or more `.h' files containing system-dependent
49 definitions.  Finally, it creates a shell script `config.status' that
50 you can run in the future to recreate the current configuration, a file
51 `config.cache' that saves the results of its tests to speed up
52 reconfiguring, and a file `config.log' containing compiler output
53 (useful mainly for debugging `configure').
55    If you need to do unusual things to compile the package, please try
56 to figure out how `configure' could check whether to do them, and mail
57 diffs or instructions to the address given in the `README' so they can
58 be considered for the next release.  If at some point `config.cache'
59 contains results you don't want to keep, you may remove or edit it.
61    The file `configure.in' is used to create `configure' by a program
62 called `autoconf'.  You only need `configure.in' if you want to change
63 it or regenerate `configure' using a newer version of `autoconf'.
65 The simplest way to compile this package is:
67   1. `cd' to the directory containing the package's source code and type
68      `./configure' to configure the package for your system.  If you're
69      using `csh' on an old version of System V, you might need to type
70      `sh ./configure' instead to prevent `csh' from trying to execute
71      `configure' itself.
73      Running `configure' takes a while.  While running, it prints some
74      messages telling which features it is checking for.
76   2. Type `make' to compile the package.
78   3. Type `make install' to install the programs and any data files and
79      documentation.
81   4. You can remove the program binaries and object files from the
82      source code directory by typing `make clean'.  
84 Compilers and Options
85 =====================
87    Some systems require unusual options for compilation or linking that
88 the `configure' script does not know about.  You can give `configure'
89 initial values for variables by setting them in the environment.  Using
90 a Bourne-compatible shell, you can do that on the command line like
91 this:
92      CC=c89 CFLAGS=-O2 LIBS=-lposix ./configure
94 Or on systems that have the `env' program, you can do it like this:
95      env CPPFLAGS=-I/usr/local/include LDFLAGS=-s ./configure
97 Compiling For Multiple Architectures
98 ====================================
100    You can compile the package for more than one kind of computer at the
101 same time, by placing the object files for each architecture in their
102 own directory.  To do this, you must use a version of `make' that
103 supports the `VPATH' variable, such as GNU `make'.  `cd' to the
104 directory where you want the object files and executables to go and run
105 the `configure' script.  `configure' automatically checks for the
106 source code in the directory that `configure' is in and in `..'.
108    If you have to use a `make' that does not supports the `VPATH'
109 variable, you have to compile the package for one architecture at a time
110 in the source code directory.  After you have installed the package for
111 one architecture, use `make distclean' before reconfiguring for another
112 architecture.
114 Installation Names
115 ==================
117    By default, `make install' will install the package's files in
118 `/usr/local/bin', `/usr/local/man', etc.  You can specify an
119 installation prefix other than `/usr/local' by giving `configure' the
120 option `--prefix=PATH'.
122    You can specify separate installation prefixes for
123 architecture-specific files and architecture-independent files.  If you
124 give `configure' the option `--exec-prefix=PATH', the package will use
125 PATH as the prefix for installing programs and libraries.
126 Documentation and other data files will still use the regular prefix.
128    If the package supports it, you can cause programs to be installed
129 with an extra prefix or suffix on their names by giving `configure' the
130 option `--program-prefix=PREFIX' or `--program-suffix=SUFFIX'.
132 Optional Features
133 =================
135    Some packages pay attention to `--enable-FEATURE' options to
136 `configure', where FEATURE indicates an optional part of the package.
137 They may also pay attention to `--with-PACKAGE' options, where PACKAGE
138 is something like `gnu-as' or `x' (for the X Window System).  The
139 `README' should mention any `--enable-' and `--with-' options that the
140 package recognizes.
142    For packages that use the X Window System, `configure' can usually
143 find the X include and library files automatically, but if it doesn't,
144 you can use the `configure' options `--x-includes=DIR' and
145 `--x-libraries=DIR' to specify their locations.
147 Specifying the System Type
148 ==========================
150    There may be some features `configure' can not figure out
151 automatically, but needs to determine by the type of host the package
152 will run on.  Usually `configure' can figure that out, but if it prints
153 a message saying it can not guess the host type, give it the
154 `--host=TYPE' option.  TYPE can either be a short name for the system
155 type, such as `sun4', or a canonical name with three fields:
156      CPU-COMPANY-SYSTEM
158 See the file `config.sub' for the possible values of each field.  If
159 `config.sub' isn't included in this package, then this package doesn't
160 need to know the host type.
162    If you are building compiler tools for cross-compiling, you can also
163 use the `--target=TYPE' option to select the type of system they will
164 produce code for and the `--build=TYPE' option to select the type of
165 system on which you are compiling the package.
167 Sharing Defaults
168 ================
170    If you want to set default values for `configure' scripts to share,
171 you can create a site shell script called `config.site' that gives
172 default values for variables like `CC', `cache_file', and `prefix'.
173 `configure' looks for `PREFIX/share/config.site' if it exists, then
174 `PREFIX/etc/config.site' if it exists.  Or, you can set the
175 `CONFIG_SITE' environment variable to the location of the site script.
176 A warning: not all `configure' scripts look for a site script.
178 Operation Controls
179 ==================
181    `configure' recognizes the following options to control how it
182 operates.
184 `--cache-file=FILE'
185      Use and save the results of the tests in FILE instead of
186      `./config.cache'.  Set FILE to `/dev/null' to disable caching, for
187      debugging `configure'.
189 `--help'
190      Print a summary of the options to `configure', and exit.
192 `--quiet'
193 `--silent'
194 `-q'
195      Do not print messages saying which checks are being made.
197 `--srcdir=DIR'
198      Look for the package's source code in directory DIR.  Usually
199      `configure' can determine that directory automatically.
201 `--version'
202      Print the version of Autoconf used to generate the `configure'
203      script, and exit.
205 `configure' also accepts some other, not widely useful, options.