From 87ef986f7e4d0e23d05fc7ddb00c2b36c711b938 Mon Sep 17 00:00:00 2001 From: jlm Date: Mon, 20 Jan 2025 10:34:13 +0000 Subject: [PATCH] Document the autoconf process. --- README | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/README b/README index 5192c520..7bc8c7d8 100644 --- a/README +++ b/README @@ -2,12 +2,30 @@ Installation: ============= +Autoconf +-------- + +Run the autoconf process in a Docker container, as follows: + + ./autogen-container.sh + +Alternatively (e.g., if Docker is unavailable), install autoconf, automake, +gettext, libtool, gawk and make, and then: + + ./autogen.sh + +Configure +--------- + Run configure, e.g. -./configure --prefix=/usr/local --sysconfdir=/etc --mandir=/usr/share/man + ./configure --prefix=/usr/local --sysconfdir=/etc --mandir=/usr/share/man See configure --help for additional command line arguments. +Make +---- + Run 'make' and 'make install'. On BSD, you may need to use 'gmake'. Configuration: