1999-04-19 02:06:54 +08:00
|
|
|
#!/bin/sh
|
1999-12-02 10:14:06 +08:00
|
|
|
# $Id$
|
1999-04-19 02:06:54 +08:00
|
|
|
|
1999-08-03 05:43:37 +08:00
|
|
|
supplied_flag=$1
|
|
|
|
|
|
|
|
if test "$supplied_flag" = "--copy"; then
|
1999-07-23 04:21:07 +08:00
|
|
|
automake_flags=--copy
|
1999-07-17 20:27:54 +08:00
|
|
|
fi
|
|
|
|
|
1999-11-29 18:22:34 +08:00
|
|
|
## build.mk does not check aclocal exit status yet
|
1999-11-29 06:51:50 +08:00
|
|
|
##
|
|
|
|
#mv aclocal.m4 aclocal.m4.old 2>/dev/null
|
|
|
|
#aclocal
|
|
|
|
#if test "$?" != "0" -a "$am_prefix" != "$lt_prefix"; then
|
|
|
|
# echo "buildconf: ERROR: aclocal failed, probably because automake and"
|
|
|
|
# echo " libtool are installed with different prefixes;"
|
|
|
|
# echo " automake is installed in $am_prefix, but libtool in $lt_prefix."
|
|
|
|
# echo " Please re-install automake and/or libtool with a common prefix"
|
|
|
|
# echo " and try again."
|
|
|
|
# exit 1
|
|
|
|
#fi
|
|
|
|
|
|
|
|
if test "$supplied_flag" = "--local"; then
|
|
|
|
subdirs='SUBDIRS='
|
1999-04-19 21:58:54 +08:00
|
|
|
else
|
1999-11-29 06:51:50 +08:00
|
|
|
subdirs=''
|
1999-04-19 21:58:54 +08:00
|
|
|
fi
|
|
|
|
|
2000-08-24 13:55:19 +08:00
|
|
|
rm -f generated_lists
|
|
|
|
|
2000-09-26 19:19:38 +08:00
|
|
|
case "`uname`" in
|
|
|
|
*BSD/OS*)
|
|
|
|
./build/bsd_makefile;;
|
|
|
|
esac
|
|
|
|
|
1999-12-30 10:59:53 +08:00
|
|
|
${MAKE:-make} -s -f build/build.mk AMFLAGS="$automake_flags"
|