2005-11-06 14:34:31 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
# Run this to generate all the initial makefiles, etc.
|
2000-09-13 22:33:15 +00:00
|
|
|
|
2005-11-06 14:34:31 +00:00
|
|
|
srcdir=`dirname $0`
|
|
|
|
|
test -z "$srcdir" && srcdir=.
|
2000-09-13 22:33:15 +00:00
|
|
|
|
2005-11-06 14:34:31 +00:00
|
|
|
PKG_NAME="gnucash"
|
2000-09-13 22:33:15 +00:00
|
|
|
|
2005-11-06 14:34:31 +00:00
|
|
|
(test -f $srcdir/configure.in \
|
|
|
|
|
## put other tests here
|
|
|
|
|
) || {
|
|
|
|
|
echo -n "**Error**: Directory "\`$srcdir\'" does not look like the"
|
|
|
|
|
echo " top-level $PKG_NAME directory"
|
|
|
|
|
exit 1
|
|
|
|
|
}
|
2000-09-13 22:33:15 +00:00
|
|
|
|
2005-11-06 14:34:31 +00:00
|
|
|
USE_GNOME2_MACROS=1
|
|
|
|
|
. $srcdir/macros/autogen.sh
|