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 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49
|
INSTALLATION INSTRUCTIONS
These are generic installation instructions. For additional
advice for this specific package, see "=README".
In the directory `src' (a subdirectory of this directory) use the
following commands (or similar) to build, test, and install this
software:
% mkdir =build # [0]
% cd =build
% ../configure --prefix INSTALL-DIRECTORY # [1], [2]
...
% make # [3]
...
% make test # [4]
...
% make install
NOTES:
[0] You must use a build directory which is separate from the
source tree.
[1] If /bin/sh on your system is not Posix enough to handle
the configure script, but "$SHELL" is, then run
configure this way:
"$SHELL" ../configure --prefix PREFIX --config-shell "$SHELL"
[2] Run "../configure --help" for information about setting
parameters other than "--prefix".
You can set CFLAGS in the environment to enable configure to detect
libraries in different paths etc.
[3] You must use a recent version of GNU make. For now, do not
use the "-j" option to make or otherwise arrange for a
parallel make.
[4] To run the tests, on some systems, you must "unlimit datasize".
# arch-tag: Tom Lord Tue Oct 5 16:08:51 2004 (devo/=INSTALL)
#
|