chars.c: Remove duplicate 'const' specifiers.
[bpt/guile.git] / autogen.sh
... / ...
CommitLineData
1#!/bin/sh
2# Usage: sh -x ./autogen.sh
3
4set -e
5
6[ -f GUILE-VERSION ] || {
7 echo "autogen.sh: run this command only at the top of guile-core."
8 exit 1
9}
10
11######################################################################
12### announce build tool versions
13echo ""
14autoconf --version
15echo ""
16automake --version
17echo ""
18if test "`uname -s`" = Darwin; then
19 glibtool --version
20else
21 libtool --version
22fi
23echo ""
24${M4:-m4} --version
25echo ""
26flex --version
27echo ""
28
29######################################################################
30### update infrastructure
31
32autoreconf -i --force --verbose
33
34echo "Now run configure and make."