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
|
To build avarice from the CVS distribution, you need
automake >= 1.9
autoconf >= 2.59
If needed, a wrapper around Bootstrap can be used to force
using a particular version of these tools (when multiple
versions are installed), like:
#!/bin/sh
set -x
: ${AC_VER="2.59"}
: ${AM_VER="1.9"}
AUTOHEADER="autoheader-${AC_VER}"
AUTOCONF="autoconf-${AC_VER}"
ACLOCAL="aclocal-${AM_VER}"
AUTOMAKE="automake-${AM_VER}"
export AUTOHEADER AUTOCONF AUTOMAKE ACLOCAL
./Bootstrap
Directions: in this directory
./Bootstrap (once only after checkout)
./configure
make
To install:
make install
To make a distribution that doesn't need the above tools:
make dist
or:
make distdir=<your favourite name for the toplevel directory> dist
|