1 Star 0 Fork 0

Wangtake/scripts

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
mm.sh 1.27 KB
一键复制 编辑 原始数据 按行查看 历史
henrisk 提交于 2016-08-18 14:56 . r16 tina linux v2.1 release
#!/bin/bash
function print_red(){
echo -e '\033[0;31;1m'
echo $1
echo -e '\033[0m'
}
function mm() {
local T=$1/
local orgin=`pwd`
local path=`pwd`
#find target makefile
#trap 'echo $orgin >> ~/mm; trap - SIGINT; ' SIGINT
while [ x`pwd` != x$T ] && [ x`pwd` != x"/" ]
do
find -maxdepth 1 -name Makefile | xargs cat | grep "define Package" > /dev/null
is_package=$?
find -maxdepth 1 -name Makefile | xargs cat | grep "define KernelPackage" > /dev/null
is_kernel_package=$?
if [ $is_package -eq 1 ] && [ $is_kernel_package -eq 1 ]; then
cd ../
else
path=`pwd`
target=${path#*$T}
cd $T
cmd="install V=s"
for i in $*; do
[ x$i = x"-B" ] && {
# -B clean the package
print_red "make $target/clean V=s"
make $target/clean V=s
}
[ x${i:0:2} = x"-j" ] && cmd=$cmd" "$i
done
print_red "make $target/$cmd"
make $target/$cmd
cd $orgin
#trap - SIGINT
return
fi
done
cd $orgin
#trap - SIGINT
print_red "Can't not find Tina Package Makefile!"
}
mm $*
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/wangtake/scripts.git
git@gitee.com:wangtake/scripts.git
wangtake
scripts
scripts
r16-v2.1.y

搜索帮助