2008-03-04 12:36:28 +00:00
|
|
|
#!/bin/sh
|
2016-07-19 11:19:21 +02:00
|
|
|
|
|
|
|
|
srcdir=`dirname $0`
|
|
|
|
|
test -z "$srcdir" && srcdir=.
|
|
|
|
|
|
2019-03-15 10:41:45 +00:00
|
|
|
olddir=`pwd`
|
|
|
|
|
cd "$srcdir"
|
2016-07-19 11:19:21 +02:00
|
|
|
|
2008-03-04 12:36:28 +00:00
|
|
|
aclocal || exit 1
|
2008-05-14 14:04:35 +01:00
|
|
|
autoheader || exit 1
|
|
|
|
|
glib-gettextize -f -c || exit 1
|
2008-11-21 11:15:05 +00:00
|
|
|
gtkdocize --copy || exit 1
|
2008-05-21 14:36:36 +01:00
|
|
|
intltoolize -c -f || exit 1
|
2008-11-21 11:15:05 +00:00
|
|
|
libtoolize -c || exit 1
|
2008-03-04 12:36:28 +00:00
|
|
|
autoconf || exit 1
|
|
|
|
|
automake -a -c || exit 1
|
2019-03-15 10:41:45 +00:00
|
|
|
|
|
|
|
|
cd "$olddir"
|
2016-07-19 11:19:21 +02:00
|
|
|
|
2012-11-16 13:28:15 -05:00
|
|
|
if test -z "$NOCONFIGURE"; then
|
2016-07-19 11:19:21 +02:00
|
|
|
$srcdir/configure --enable-maintainer-mode $*
|
2012-11-16 13:28:15 -05:00
|
|
|
fi
|