1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
### INSTALL ###
Very simple:
./configure
make
make install
### DETAILS ###
./configure This is a script to check your system and repost if anything
is wrong/missing.
You can also try "./configure --help" for options to use.
To use another compiler and flags, try this example:
"CC='egcs' CFLAGS="-O6 -mpentiumpro" ./configure"
make This actually compiles the program. For a faster
compiletime try using: "make -j X" or "make -j X MAKE='make
-j X'" where X is a number greater than 1.
Large numers (>10) will use ALOT of memory, 2 or 4 should do
it. This is VERY useful for SMP machines. And of cource: You
milage may vary (tm) :)
make install This will install the nessecery files in the correct
directories. This directories are desided by the ./configure
script. You might need to have root privileges to do this.
The examples/mode.conf file will not be installed if it
already exists, so if there are new settings in that file
that you need, you will have to copy it yourself.
|