From 419056bf41f38891c3bb5384293868b479478828 Mon Sep 17 00:00:00 2001 From: Stefano Karapetsas Date: Tue, 13 Dec 2011 23:50:42 +0100 Subject: added autogen.sh --- autogen.sh | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100755 autogen.sh (limited to 'autogen.sh') diff --git a/autogen.sh b/autogen.sh new file mode 100755 index 0000000..edb005e --- /dev/null +++ b/autogen.sh @@ -0,0 +1,24 @@ +#!/bin/sh +# Run this to generate all the initial makefiles, etc. + +srcdir=`dirname $0` +test -z "$srcdir" && srcdir=. + +PKG_NAME="mate-power-manager" + +(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 +MATE_DATADIR="$mate_datadir" + +. mate-autogen.sh + -- cgit v1.2.1