first milestone reached
This commit is contained in:
29
Code/build.sh
Executable file
29
Code/build.sh
Executable file
@@ -0,0 +1,29 @@
|
||||
#/bin/bash
|
||||
|
||||
set -e
|
||||
|
||||
# ---------------------------------------------
|
||||
build_pass ()
|
||||
{
|
||||
dir=$1;
|
||||
|
||||
echo "build in $dir" | boxes -d cowsay
|
||||
|
||||
cd $dir
|
||||
make
|
||||
cd ..
|
||||
|
||||
}
|
||||
# ---------------------------------------------
|
||||
|
||||
subdirs="common rover mcp tools"
|
||||
|
||||
for foo in $subdirs ; do
|
||||
build_pass $foo
|
||||
done
|
||||
|
||||
|
||||
# ---------------------------------------------
|
||||
# ---------------------------------------------
|
||||
# ---------------------------------------------
|
||||
|
||||
Reference in New Issue
Block a user