mc/autogen.sh
Christopher Blizzard c71bddeb43 1998-12-17 Christopher Blizzard <blizzard@appliedtheory.com>
* autogen.sh (srcdir): Honor $ACLOCAL_FLAGS when running aclocal.
1998-12-17 19:57:06 +00:00

20 lines
426 B
Bash
Executable File

#! /bin/sh
# Run this to generate all the initial makefiles, etc.
srcdir=`dirname $0`
test -z "$srcdir" && srcdir=.
(
cd $srcdir
if test -d macros; then
test -f mc-aclocal.m4 && test -f gettext.m4 && cat mc-aclocal.m4 gettext.m4 > acinclude.m4
aclocal -I macros $ACLOCAL_FLAGS
else
echo macros directory not found, skipping generation of aclocal.m4
fi
autoheader
autoconf
)
$srcdir/configure --enable-maintainer-mode $*