]> rtime.felk.cvut.cz Git - sojka/lightdm.git/blob - autogen.sh
Load all users only when really needed
[sojka/lightdm.git] / autogen.sh
1 #!/bin/sh
2 # Run this to generate all the initial makefiles, etc.
3
4 libtoolize --force --copy
5 intltoolize --force --copy
6 gtkdocize --copy
7 aclocal
8 autoconf
9 autoheader
10 automake --add-missing --copy --foreign
11
12 YELP=`which yelp-build`
13 if test -z $YELP; then
14   echo "*** The tools to build the documentation are not found,"
15   echo "    please install the yelp-tools package ***"
16   exit 1
17 fi
18
19 if [ -z "$NOCONFIGURE" ]; then
20     ./configure $@
21 fi