This repository has been archived on 2024-07-15. You can view files and clone it, but cannot push or open issues or pull requests.
2013-10-16 11:35:08 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
|
|
|
test -n "$srcdir" || srcdir=`dirname "$0"`
|
|
|
|
test -n "$srcdir" || srcdir=.
|
|
|
|
|
|
|
|
builddir=`pwd`
|
|
|
|
mkdir -p $builddir/m4
|
|
|
|
|
|
|
|
cd $srcdir
|
|
|
|
gtkdocize --copy || exit $?
|
|
|
|
autoreconf -fi || exit $?
|
|
|
|
glib-gettextize --copy --force || exit $?
|
|
|
|
intltoolize --copy --force --automake || exit $?
|