2 # Run this to generate all the initial makefiles, etc.
5 test -z "$srcdir" && srcdir=.
15 (autoconf --version) < /dev/null > /dev/null 2>&1 || {
17 echo "You must have autoconf installed to compile $PROJECT."
18 echo "Download the appropriate package for your distribution,"
19 echo "or get the source tarball at ftp://ftp.gnu.org/pub/gnu/"
23 (automake --version) < /dev/null > /dev/null 2>&1 || {
25 echo "You must have automake installed to compile $PROJECT."
26 echo "Get ftp://sourceware.cygnus.com/pub/automake/automake-1.4.tar.gz"
27 echo "(or a newer version if it is available)"
31 if test "$DIE" -eq 1; then
35 test $TEST_TYPE $FILE || {
36 echo "You must run this script in the top-level $PROJECT directory"
41 echo "I am going to run ./configure with no arguments - if you wish "
42 echo "to pass any to it, please specify them on the $0 command line."
46 *xlc | *xlc\ * | *lcc | *lcc\ *) am_opt=--include-deps;;
49 aclocal $ACLOCAL_FLAGS
51 # optionally feature autoheader
52 (autoheader --version) < /dev/null > /dev/null 2>&1 && autoheader
58 $srcdir/configure --enable-maintainer-mode "$@"
61 echo "Now type 'make' to compile $PROJECT."