Code

pgtest.sh: Added documentation for 'restart'.
[postrr.git] / autogen.sh
1 #! /bin/sh
3 libtoolize=libtoolize
5 if which glibtoolize > /dev/null 2>&1; then
6         libtoolize=glibtoolize
7 fi
9 set -ex
11 aclocal --force --warnings=all
12 $libtoolize --automake --copy --force
13 aclocal
14 autoconf --force --warnings=all
15 autoheader --force --warnings=all
16 automake --add-missing --copy --foreign --warnings=all
18 set +x
20 echo ""
21 echo "Run './configure' to configure the software. See './configure --help'"
22 echo "for details on command line options and environment variables affecting"
23 echo "the build."