summaryrefslogtreecommitdiff
path: root/autogen.sh
blob: b4df1928c7c22c491aecdab75261c0c386e1b256 (plain)
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
#!/bin/sh
# Run this to generate all the initial makefiles, etc.

LIBTOOLIZE=${LIBTOOLIZE:-libtoolize}
LIBTOOLIZE_FLAGS="--copy --force"
ACLOCAL=${ACLOCAL:-aclocal}
AUTOHEADER=${AUTOHEADER:-autoheader}
AUTOMAKE=${AUTOMAKE:-automake}
AUTOMAKE_FLAGS="--add-missing --copy"
AUTOCONF=${AUTOCONF:-autoconf}

ARGV0=$0

set -e

if [ -z "$*" ]; then
	echo "$ARGV0:	Note: \`./configure' will be run without arguments."
	echo "		If you wish to pass any to it, please specify them on the"
	echo "		\`$0' command line."
	echo
fi

run() {
	echo "$ARGV0: running \`$@'"
	$@
}

run $LIBTOOLIZE $LIBTOOLIZE_FLAGS
run $ACLOCAL $ACLOCAL_FLAGS
run $AUTOHEADER
run $AUTOMAKE $AUTOMAKE_FLAGS
run $AUTOCONF
run ./configure --enable-maintainer-mode "$@"
echo "Now type \`make' to compile."