autogen.sh 556 B

12345678910111213141516171819202122232425
  1. #! /bin/sh
  2. # Run this to generate all the initial makefiles, etc.
  3. srcdir=`dirname $0`
  4. test -z "$srcdir" && srcdir=.
  5. (
  6. cd $srcdir
  7. : ${CVS=cvs}
  8. test -d macros || $CVS co -d macros gnome-common/macros || exit 1
  9. test -d intl || $CVS co -d intl gnome-common/intl || exit 1
  10. aclocal -I macros $ACLOCAL_FLAGS || exit 1
  11. autoheader || exit 1
  12. autoconf || exit 1
  13. automake -a || exit 1
  14. cd vfs/samba || exit 1
  15. date -u >include/stamp-h.in
  16. autoheader || exit 1
  17. autoconf || exit 1
  18. ) || exit 1
  19. $srcdir/configure --cache-file=config.cache --enable-maintainer-mode "$@"