added more build types to build_all.sh

This commit is contained in:
Andrew Tridgell 2011-12-12 14:59:53 +11:00
parent cadc5bde1d
commit 0f7bd9678f
1 changed files with 2 additions and 4 deletions

View File

@ -7,19 +7,17 @@ set -e
set -x set -x
pushd ArduPlane pushd ArduPlane
for b in all apm2 hil hilsensors; do for b in all apm2 apm2beta hil hilsensors mavlink10 sitl; do
pwd pwd
make clean make clean
make $b make $b
done done
make -f ../libraries/Desktop/Makefile.desktop clean all
popd popd
pushd ArduCopter pushd ArduCopter
for b in all apm2 hil; do for b in all apm2 apm2beta hil sitl; do
pwd pwd
make clean make clean
make $b make $b
done done
make -f ../libraries/Desktop/Makefile.desktop clean all
popd popd