1 Star 1 Fork 1

张玉虎/live555

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
genMakefiles 512 Bytes
一键复制 编辑 原始数据 按行查看 历史
zhangyuhu 提交于 2021-12-20 11:31 . first commit
#!/bin/sh
usage() {
echo "Usage: $0 <os-platform>"
exit 1
}
if [ $# -ne 1 ]
then
usage $*
fi
platform=$1
subdirs="liveMedia groupsock UsageEnvironment BasicUsageEnvironment testProgs mediaServer proxyServer hlsProxy"
for subdir in $subdirs
do
/bin/rm -f $subdir/Makefile
cat $subdir/Makefile.head config.$platform $subdir/Makefile.tail > $subdir/Makefile
chmod a-w $subdir/Makefile
done
/bin/rm -f Makefile
cat Makefile.head config.$1 Makefile.tail > Makefile
chmod a-w Makefile
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
C++
1
https://gitee.com/fromyuhu/live555.git
git@gitee.com:fromyuhu/live555.git
fromyuhu
live555
live555
master

搜索帮助