diff options
author | Stefano Karapetsas <[email protected]> | 2012-01-12 18:57:23 +0100 |
---|---|---|
committer | Stefano Karapetsas <[email protected]> | 2012-01-12 18:57:23 +0100 |
commit | 572a2c5896e19dd4876f0f70521a96abd92b8383 (patch) | |
tree | bb6c018c293a9fae115ff5ef02e472b9ab3b8814 /autogen.sh | |
parent | b3e60df70d30451437b045b1d4c0d456da80d844 (diff) | |
download | mozo-572a2c5896e19dd4876f0f70521a96abd92b8383.tar.bz2 mozo-572a2c5896e19dd4876f0f70521a96abd92b8383.tar.xz |
switch to autogen.sh
Diffstat (limited to 'autogen.sh')
-rwxr-xr-x | autogen.sh | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/autogen.sh b/autogen.sh new file mode 100755 index 0000000..2038402 --- /dev/null +++ b/autogen.sh @@ -0,0 +1,25 @@ +#!/bin/sh +# Run this to generate all the initial makefiles, etc. + +srcdir=`dirname $0` +test -z "$srcdir" && srcdir=. + +PKG_NAME="mate-menu-editor" + +(test -f $srcdir/configure.ac) || { + echo -n "**Error**: Directory "\`$srcdir\'" does not look like the" + echo " top-level $PKG_NAME directory" + exit 1 +} + +which mate-autogen.sh || { + echo "You need to install mate-common from the MATE Git" + exit 1 +} + +REQUIRED_AUTOMAKE_VERSION=1.9 +USE_MATE2_MACROS=1 +USE_COMMON_DOC_BUILD=yes + +. mate-autogen.sh + |