* add autogen.sh
[email-providers] / autogen.sh
1 #!/bin/sh
2 # Run this to generate all the initial makefiles, etc.
3
4 srcdir=`dirname $0`
5 test -z "$srcdir" && srcdir=.
6 REQUIRED_AUTOMAKE_VERSION=1.8
7 PKG_NAME=modest
8
9 which gnome-autogen.sh || {
10     echo "You need to install gnome-common from GNOME CVS"
11     exit 1
12 }
13
14 USE_GNOME2_MACROS=1 . gnome-autogen.sh $@
15