2009-11-30 12:04:30 -05:00
|
|
|
#!/bin/bash
|
|
|
|
# this script must be run from openzap root dir and it is assuming
|
|
|
|
# FreeSWITCH is trunk is located at ../../
|
|
|
|
fsdir=../..
|
2009-12-01 16:49:51 -05:00
|
|
|
set -x
|
2009-11-30 12:04:30 -05:00
|
|
|
cp Debug/mod/*.dll $fsdir/Debug/mod/
|
2010-04-13 15:17:32 -04:00
|
|
|
cp mod_freetdm/Debug/*.pdb $fsdir/Debug/mod/
|
2010-11-16 14:56:19 -05:00
|
|
|
cp Debug/freetdm.dll $fsdir/Debug/
|
|
|
|
cp Debug/ftmod_*.dll $fsdir/Debug/mod/
|
2010-11-11 18:43:53 -05:00
|
|
|
cp Debug/*.pdb $fsdir/Debug/mod/
|
2010-11-01 10:24:11 -04:00
|
|
|
#cp Debug/testsangomaboost.exe $fsdir/Debug/
|
2010-02-16 12:06:00 -05:00
|
|
|
echo "FRIENDLY REMINDER: RECOMPILE ftmod_wanpipe WHENEVER YOU INSTALL NEW DRIVERS"
|
2009-12-01 16:49:51 -05:00
|
|
|
set +x
|
2009-11-30 12:04:30 -05:00
|
|
|
|