freeswitch/freeswitch/modmake.sh
Michael Jerris 71963ea8f7 Copied remotely
git-svn-id: http://svn.freeswitch.org/svn/freeswitch/trunk@45 d0543943-73ff-0310-b7d9-9358b9ac24b2
2005-11-19 20:07:43 +00:00

19 lines
194 B
Bash

#!/bin/sh
pwd=$1
shift
mod=$1
shift
make=`which gmake`
if [ -z $make ] ; then
make=`which make`
fi
if [ -f $mod/Makefile ] ; then
$make -C $mod
else
$make -f $pwd/generic_mod.mk -C $mod
fi