1998-11-23 01:04:09 +03:00
|
|
|
#! /bin/sh
|
|
|
|
# Run this to generate all the initial makefiles, etc.
|
|
|
|
|
1998-03-23 10:12:13 +03:00
|
|
|
srcdir=`dirname $0`
|
|
|
|
test -z "$srcdir" && srcdir=.
|
|
|
|
|
|
|
|
(
|
|
|
|
cd $srcdir
|
2001-04-06 22:01:31 +04:00
|
|
|
|
|
|
|
: ${CVS=cvs}
|
|
|
|
test -d macros || $CVS co -d macros gnome-common/macros || exit 1
|
|
|
|
test -d intl || $CVS co -d intl gnome-common/intl || exit 1
|
|
|
|
|
|
|
|
aclocal -I macros $ACLOCAL_FLAGS || exit 1
|
2000-08-18 08:16:25 +04:00
|
|
|
autoheader || exit 1
|
2000-08-24 18:13:00 +04:00
|
|
|
autoconf || exit 1
|
|
|
|
automake -a || exit 1
|
2001-04-06 22:01:31 +04:00
|
|
|
|
2000-08-18 08:16:25 +04:00
|
|
|
cd vfs/samba || exit 1
|
2001-02-08 03:01:21 +03:00
|
|
|
date -u >include/stamp-h.in
|
2000-08-18 08:16:25 +04:00
|
|
|
autoheader || exit 1
|
|
|
|
autoconf || exit 1
|
|
|
|
) || exit 1
|
1998-03-23 10:12:13 +03:00
|
|
|
|
2000-08-24 18:13:00 +04:00
|
|
|
$srcdir/configure --cache-file=config.cache --enable-maintainer-mode "$@"
|