ardupilot/Tools/scripts/build_all.sh
Andrew Tridgell d4e9ad650b scripts: added build_all.sh
this is useful when testing merge work
2011-11-25 20:00:19 -08:00

26 lines
468 B
Bash
Executable File

#!/bin/bash
# useful script to test all the different build types that we support.
# This helps when doing large merges
# Andrew Tridgell, November 2011
set -e
set -x
pushd ArduPlane
for b in all apm2 hil hilsensors; do
pwd
make clean
make $b
done
make -f ../libraries/Desktop/Makefile.desktop clean all
popd
pushd ArduCopter
for b in all apm2 hil; do
pwd
make clean
make $b
done
make -f ../libraries/Desktop/Makefile.desktop clean all
popd