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