forked from Mirrors/freeswitch
25 lines
398 B
Bash
Executable File
25 lines
398 B
Bash
Executable File
#!/bin/sh
|
|
|
|
make=$1
|
|
shift
|
|
pwd=$1
|
|
shift
|
|
mod=$1
|
|
shift
|
|
|
|
if [ -f $pwd/build/freeswitch.env ] ; then
|
|
. $pwd/build/freeswitch.env
|
|
fi
|
|
|
|
end=`echo $mod | sed "s/^.*\///g"`
|
|
if [ -z "$end" ] ; then
|
|
end=$mod
|
|
fi
|
|
|
|
if [ -f $mod/Makefile ] ; then
|
|
CFLAGS="$MOD_CFLAGS $CFLAGS " MODNAME=$end $make -C $mod $@
|
|
else
|
|
CFLAGS="$MOD_CFLAGS $CFLAGS" MODNAME=$end $make -f $pwd/generic_mod.mk -C $mod $@
|
|
fi
|
|
|