1#!/bin/sh
2# Run this to generate all the initial makefiles, etc.
3
4echo -n "checking for gtkdocize... "
5which gtkdocize || {
6	echo "*** No gtkdocize (gtk-doc) found, please install it ***"
7}
8
9echo -n "checking for autoreconf... "
10which autoreconf || {
11	echo "*** No autoreconf (autoconf) found, please install it ***"
12	exit 1
13}
14
15echo "running gtkdocize --copy"
16gtkdocize --copy || exit 1
17
18echo "running autoreconf --force --install --verbose"
19autoreconf --force --install --verbose || exit $?
20