2 # Run this to generate all the initial makefiles, etc.
3 test -n "$srcdir" || srcdir
=$
(dirname "$0")
4 test -n "$srcdir" || srcdir
=.
10 (test -f configure.ac
) ||
{
11 echo "*** ERROR: Directory '$srcdir' does not look like the top-level project directory ***"
15 # shellcheck disable=SC2016
16 PKG_NAME
=$
(autoconf
--trace 'AC_INIT:$1' configure.ac
)
18 if [ "$#" = 0 -a "x$NOCONFIGURE" = "x" ]; then
19 echo "*** WARNING: I am going to run 'configure' with no arguments." >&2
20 echo "*** If you wish to pass any to it, please specify them on the" >&2
21 echo "*** '$0' command line." >&2
25 aclocal
--install ||
exit 1
26 autoreconf
--verbose --force --install ||
exit 1
29 if [ "$NOCONFIGURE" = "" ]; then
30 $srcdir/configure
"$@" ||
exit 1
32 if [ "$1" = "--help" ]; then exit 0 else
33 echo "Now type 'make' to compile $PKG_NAME" ||
exit 1
36 echo "Skipping configure process."