2013-11-24 04:43:40 +01:00
|
|
|
#!/bin/sh
|
2014-01-13 03:31:28 +01:00
|
|
|
# Run this to generate all the initial makefiles, etc.
|
2011-02-24 04:14:30 +01:00
|
|
|
|
2014-01-13 03:31:28 +01:00
|
|
|
srcdir=`dirname $0`
|
|
|
|
test -z "$srcdir" && srcdir=.
|
2011-02-24 04:14:30 +01:00
|
|
|
|
2014-01-13 03:31:28 +01:00
|
|
|
(test -f $srcdir/src/common/hexchat.c) || {
|
2015-04-22 00:34:55 +02:00
|
|
|
echo -n "**Error**: Directory "\`$srcdir\'" does not look like the top-level directory"
|
2014-01-13 03:31:28 +01:00
|
|
|
exit 1
|
|
|
|
}
|
2011-02-24 04:14:30 +01:00
|
|
|
|
2015-04-22 04:51:09 +02:00
|
|
|
aclocal --install -I m4 || exit 1
|
2015-04-22 00:34:55 +02: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-24 04:14:30 +01:00
|
|
|
|
2015-04-22 00:34:55 +02: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-24 04:14:30 +01:00
|
|
|
|
2015-04-22 00:34:55 +02:00
|
|
|
set +x
|