mirror of
https://github.com/hexchat/hexchat.git
synced 2024-11-05 10:42:33 +01:00
6ad9419693
travis-ci uses it still...
28 lines
697 B
Bash
Executable File
28 lines
697 B
Bash
Executable File
#!/bin/sh
|
|
# Run this to generate all the initial makefiles, etc.
|
|
|
|
srcdir=`dirname $0`
|
|
test -z "$srcdir" && srcdir=.
|
|
|
|
(test -f $srcdir/src/common/hexchat.c) || {
|
|
echo -n "**Error**: Directory "\`$srcdir\'" does not look like the top-level directory"
|
|
exit 1
|
|
}
|
|
|
|
aclocal --install -I m4 || exit 1
|
|
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
|
|
|
|
if [ "$1" = "--help" ]; then exit 0 else
|
|
echo "Now type \`make\' to compile" || exit 1
|
|
fi
|
|
else
|
|
echo "Skipping configure process."
|
|
fi
|
|
|
|
set +x
|