1#!/bin/sh
2# Run this to generate all the initial makefiles, etc.
3test -n "$srcdir" || srcdir=$(dirname "$0")
4test -n "$srcdir" || srcdir=.
5
6olddir=$(pwd)
7
8cd $srcdir
9
10(test -f configure.ac) || {
11        echo "*** ERROR: Directory '$srcdir' does not look like the top-level project directory ***"
12        exit 1
13}
14
15# shellcheck disable=SC2016
16PKG_NAME=$(autoconf --trace 'AC_INIT:$1' configure.ac)
17
18if [ "$#" = 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
22        echo "" >&2
23fi
24
25aclocal --install -I m4 || exit 1
26intltoolize --force --copy --automake || exit 1
27gtkdocize --copy || exit 1
28autoreconf --verbose --force --install || exit 1
29
30cd "$olddir"
31if [ "$NOCONFIGURE" = "" ]; then
32        $srcdir/configure "$@" || exit 1
33
34        if [ "$1" = "--help" ]; then exit 0 else
35                echo "Now type 'make' to compile $PKG_NAME" || exit 1
36        fi
37else
38        echo "Skipping configure process."
39fi
40