git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@4845 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Anthony Minessale 2007-04-03 14:04:26 +00:00
parent c593f2fdce
commit ed0cfa9f15
1 changed files with 3 additions and 3 deletions

View File

@ -5,7 +5,7 @@ if [ -z $MAKE ] ; then
fi
if [ -z $arg ] ; then
$MAKE -j20 freeswitch
$MAKE -j freeswitch
MODS=`cat modules.conf | grep -v \#`
for i in $MODS ; do
MOD_NAME=`echo $i | sed -e 's|^.*/||'`
@ -42,9 +42,9 @@ MOD_DIR=$1 ; shift
echo "Making module in $MOD_NAME"
if [ -f $MOD_DIR/Makefile ] ; then
cd $MOD_DIR && BASE=$switch_srcdir $MAKE
cd $MOD_DIR && BASE=$switch_srcdir $MAKE -j
else
cd $MOD_DIR && BASE=$switch_srcdir $MAKE -f $switch_srcdir/build/modmake.rules
cd $MOD_DIR && BASE=$switch_srcdir $MAKE -j -f $switch_srcdir/build/modmake.rules
fi
echo "Finished making module in $MOD_NAME"