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