dashboard
repositories
filestore
activity
search
login
main
/
framwork
LingYun Studio embeded system framwork software, such as thirdparty build shell and lingyun library
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
update list.c
guowenxue
2024-09-25
89a20baa7f1071a0628d9765d4698fcdfd967486
[framwork.git]
/
openlibs
/
build.sh
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