2013-11-23 22:43:40 -05:00
|
|
|
#!/bin/sh
|
2014-01-12 21:31:28 -05:00
|
|
|
# Run this to generate all the initial makefiles, etc.
|
2011-02-23 22:14:30 -05:00
|
|
|
|
2014-01-12 21:31:28 -05:00
|
|
|
srcdir=`dirname $0`
|
|
|
|
test -z "$srcdir" && srcdir=.
|
2011-02-23 22:14:30 -05:00
|
|
|
|
2014-01-12 21:31:28 -05:00
|
|
|
(test -f $srcdir/src/common/hexchat.c) || {
|
2015-04-21 18:34:55 -04:00
|
|
|
echo -n "**Error**: Directory "\`$srcdir\'" does not look like the top-level directory"
|
2014-01-12 21:31:28 -05:00
|
|
|
exit 1
|
|
|
|
}
|
2011-02-23 22:14:30 -05:00
|
|
|
|
2015-04-21 22:51:09 -04:00
|
|
|
aclocal --install -I m4 || exit 1
|
2015-04-21 18:34:55 -04:00
|
|
|
glib-gettextize --force --copy || exit 1
|
|
|
|
intltoolize --force --copy --automake || exit 1
|
|
|
|
autoreconf --force --install -Wno-portability || exit 1
|
|
|
|
|
|
|
|
if [ "$NOCONFIGURE" = "" ]; then
|
|
|
|
$srcdir/configure "$@" || exit 1
|
2011-02-23 22:14:30 -05:00
|
|
|
|
2015-04-21 18:34:55 -04:00
|
|
|
if [ "$1" = "--help" ]; then exit 0 else
|
|
|
|
echo "Now type \`make\' to compile" || exit 1
|
|
|
|
fi
|
|
|
|
else
|
|
|
|
echo "Skipping configure process."
|
|
|
|
fi
|
2011-02-23 22:14:30 -05:00
|
|
|
|
2015-04-21 18:34:55 -04:00
|
|
|
set +x
|