summary refs log blame commit diff stats
path: root/autogen.sh
blob: df42d3bd62a16c161ca8e1d99ff2f17deb1609a3 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
         
                                                      
 

                             
 
                                           
                                                                                               

              
 








                                                                              


                                        
 





                                                             
 
      
#!/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
}

if [ "$1" = "--copy" ]; then
	shift
	aclocal --force --install || exit 1
	intltoolize --force --copy --automake || exit 1
	autoreconf --force --install --include=m4 -Wno-portability || exit 1
else
	intltoolize --automake || exit 1
	autoreconf --install --symlink --include=m4 -Wno-portability || exit 1
fi

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