git-svn-id: http://svn.freeswitch.org/svn/local/src/freeswitch@11 d0543943-73ff-0310-b7d9-9358b9ac24b2
This commit is contained in:
Anthony Minessale
2005-11-12 21:27:19 +00:00
parent 138e8039bf
commit 4da77ea5c5
112 changed files with 58263 additions and 0 deletions
+18
View File
@@ -0,0 +1,18 @@
#!/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