GSettings docs: clarify what is a good path
[glib.git] / autogen.sh
blob01011d986748f070cc1840e3b5ce7bde57cc5a91
1 #!/bin/sh
2 # Run this to generate all the initial makefiles, etc.
4 test -n "$srcdir" || srcdir=`dirname "$0"`
5 test -n "$srcdir" || srcdir=.
7 olddir=`pwd`
8 cd "$srcdir"
10 GTKDOCIZE=`which gtkdocize`
11 if test -z $GTKDOCIZE; then
12 echo "*** No GTK-Doc found, please install it ***"
13 exit 1
16 AUTORECONF=`which autoreconf`
17 if test -z $AUTORECONF; then
18 echo "*** No autoreconf found, please install it ***"
19 exit 1
22 # README and INSTALL are required by automake, but may be deleted by clean
23 # up rules. to get automake to work, simply touch these here, they will be
24 # regenerated from their corresponding *.in files by ./configure anyway.
25 touch README INSTALL
27 gtkdocize || exit $?
28 autoreconf --force --install --verbose || exit $?
30 cd "$olddir"
31 test -n "$NOCONFIGURE" || "$srcdir/configure" "$@"