renatofilho@584: #!/bin/sh
renatofilho@584: # Run this to generate all the initial makefiles, etc.
renatofilho@584: 
renatofilho@584: srcdir=`dirname $0`
renatofilho@584: test -z "$srcdir" && srcdir=.
renatofilho@584: 
renatofilho@584: PKG_NAME="gmemcoder"
renatofilho@584: 
renatofilho@584: (test -f $srcdir/configure.ac) || {
renatofilho@584:     echo -n "**Error**: Directory "\`$srcdir\'" does not look like the"
renatofilho@584:     echo " top-level $PKG_NAME directory"
renatofilho@584:     exit 1
renatofilho@584: }
renatofilho@584: 
renatofilho@584: which gnome-autogen.sh || {
renatofilho@584:     echo "You need to install gnome-common from the GNOME CVS"
renatofilho@584:     exit 1
renatofilho@584: }
renatofilho@584: REQUIRED_AUTOMAKE_VERSION=1.9 USE_GNOME2_MACROS=1 . gnome-autogen.sh