12345678910111213141516171819202122232425 |
- #! /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
- )
- if [ -z "$OBJ_DIR" ]; then
- $srcdir/configure --enable-maintainer-mode $*
- else
- mkdir -p "$OBJ_DIR"
- cd "$OBJ_DIR"
- ../configure --enable-maintainer-mode $*
- fi
|