This commit is contained in:
agtuser
2024-10-18 19:07:40 +08:00
parent fc468725de
commit 2b97cffabe
9 changed files with 554 additions and 554 deletions

View File

@@ -1,18 +1,18 @@
#!/bin/bash
platDir=../plat
platModuleList="8ecp aif bicc debug haepub iptrans isdn isup m2ua mgc mgcp mgc_v2 mtp3 pal public rtp sccp scf sip smpp snmp tcap xapp"
for mod in $platModuleList; do
echo "====================== make $mod ======================="
cd $platDir/$mod
#make clean
make
if [ $mod == "iptrans" ]; then
./mkiptrans.sh
cp -f ./iptrans ../../bin/
fi
cd -
echo ""
done
#!/bin/bash
platDir=../plat
platModuleList="8ecp aif bicc debug haepub iptrans isdn isup m2ua mgc mgcp mgc_v2 mtp3 pal public rtp sccp scf sip smpp snmp tcap xapp"
for mod in $platModuleList; do
echo "====================== make $mod ======================="
cd $platDir/$mod
#make clean
make
if [ $mod == "iptrans" ]; then
./mkiptrans.sh
cp -f ./iptrans ../../bin/
fi
cd -
echo ""
done