diff options
author | dobey <dobey> | 2006-08-18 19:30:25 +0000 |
---|---|---|
committer | dobey <dobey> | 2006-08-18 19:30:25 +0000 |
commit | 9ebbf6dc3ba21786c31a02fcb282d3dfaa6e07c5 (patch) | |
tree | 2b361c61b7c265871a8b89d3815ac7f48955f28c /autogen.sh |
Initial revision
Diffstat (limited to 'autogen.sh')
-rwxr-xr-x | autogen.sh | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/autogen.sh b/autogen.sh new file mode 100755 index 0000000..145f725 --- /dev/null +++ b/autogen.sh @@ -0,0 +1,22 @@ +#!/bin/sh +# Run this to generate all the initial makefiles, etc. + +srcdir=`dirname $0` +test -z "$srcdir" && srcdir=. + +PKG_NAME="a11y-test-suite" +REQUIRED_AUTOMAKE_VERSION=1.6 + +(test -f $srcdir/configure.ac \ + && test -f $srcdir/configure.ac) || { + echo -n "**Error**: Directory "\`$srcdir\'" does not look like the" + echo " top-level $PKG_NAME directory" + exit 1 +} + +which gnome-autogen.sh || { + echo "You need to install gnome-common from the GNOME CVS" + exit 1 +} +USE_GNOME2_MACROS=1 . gnome-autogen.sh + |