diff options
author | Michal Ratajsky <[email protected]> | 2014-05-24 00:15:24 +0200 |
---|---|---|
committer | Michal Ratajsky <[email protected]> | 2014-05-24 00:15:24 +0200 |
commit | caf4d9b8b8b0d26856d2d64f00ab23756867a923 (patch) | |
tree | bfe58f689a50c3f7f9da3349fbfbc8d42a21a30a /autogen.sh | |
download | libmatemixer-caf4d9b8b8b0d26856d2d64f00ab23756867a923.tar.bz2 libmatemixer-caf4d9b8b8b0d26856d2d64f00ab23756867a923.tar.xz |
Initial commit
Diffstat (limited to 'autogen.sh')
-rwxr-xr-x | autogen.sh | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/autogen.sh b/autogen.sh new file mode 100755 index 0000000..cfa4c75 --- /dev/null +++ b/autogen.sh @@ -0,0 +1,23 @@ +#!/bin/sh +# Run this to generate all the initial makefiles, etc. + +srcdir=`dirname $0` +test -z "$srcdir" && srcdir=. + +PKG_NAME="libmatemixer" + +(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 || { + echo "You need to install mate-common from the MATE Git" + exit 1 +} + +REQUIRED_AUTOMAKE_VERSION=1.9 +# USE_COMMON_DOC_BUILD=yes + +. mate-autogen |