LingYun Studio embeded system framwork software, such as thirdparty build shell and lingyun library
guowenxue
2024-08-22 093449a7287a7feb2e90c5120d9e5cc974b8a52e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/bash
 
function do_compile
{
    for dir in `ls`
    do
        if [ -f $dir/build*.sh ] ; then
            cd $dir
               ./build*.sh
            cd -
        fi
    done
}
 
do_compile