summaryrefslogtreecommitdiff
path: root/autogen.sh
blob: 8183a7fb3151a1a53777b6821c88ce80168ca04e (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh

aclocal $ACLOCAL_FLAGS || exit 1
automake --gnu --add-missing --copy || exit 1
autoconf || exit 1

if test "x$NOCONFIGURE" = "x"; then
    ./configure "$@"
else
    echo "Skipping configure process."
fi