1#!/bin/sh
2# Run this to generate all the initial makefiles, etc.
3
4srcdir=`dirname $0`
5test -z "$srcdir" && srcdir=.
6
7PKG_NAME="mozo"
8
9(test -f $srcdir/configure.ac) || {
10    echo -n "**Error**: Directory "\`$srcdir\'" does not look like the"
11    echo " top-level $PKG_NAME directory"
12    exit 1
13}
14
15which mate-autogen || {
16    echo "You need to install mate-common from the MATE Git"
17    exit 1
18}
19
20REQUIRED_AUTOMAKE_VERSION=1.9
21USE_COMMON_DOC_BUILD=yes
22
23. mate-autogen
24
25