2000-09-13 22:33:15 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
# Run this to generate all the initial makefiles, etc.
|
|
|
|
|
|
2006-02-15 23:20:31 +00:00
|
|
|
echo CashUtil development within gnucash has halted.
|
|
|
|
|
echo It may or may not be revived after gnucash 2.0.0 -
|
|
|
|
|
echo development has restarted outside gnucash, see
|
|
|
|
|
echo http://www.linux.codehelp.co.uk/cashutil/
|
|
|
|
|
exit 1
|
|
|
|
|
|
2000-09-13 22:33:15 +00:00
|
|
|
srcdir=`dirname $0`
|
|
|
|
|
test -z "$srcdir" && srcdir=.
|
|
|
|
|
|
|
|
|
|
PKG_NAME="gnucash"
|
|
|
|
|
|
2005-11-03 22:57:39 +00:00
|
|
|
(test -f $srcdir/configure.ac \
|
2000-09-13 22:33:15 +00:00
|
|
|
## put other tests here
|
|
|
|
|
) || {
|
|
|
|
|
echo -n "**Error**: Directory "\`$srcdir\'" does not look like the"
|
|
|
|
|
echo " top-level $PKG_NAME directory"
|
|
|
|
|
exit 1
|
|
|
|
|
}
|
|
|
|
|
|
2005-11-02 03:32:36 +00:00
|
|
|
USE_GNOME2_MACROS=1
|
2000-09-13 22:33:15 +00:00
|
|
|
. $srcdir/macros/autogen.sh
|
2005-11-03 16:11:38 +00:00
|
|
|
|