ardupilot/Tools/scripts/build_all.sh

24 lines
394 B
Bash
Raw Normal View History

#!/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
2011-12-11 23:59:53 -04:00
for b in all apm2 apm2beta hil hilsensors mavlink10 sitl; do
pwd
make clean
make $b
done
popd
pushd ArduCopter
2011-12-11 23:59:53 -04:00
for b in all apm2 apm2beta hil sitl; do
pwd
make clean
make $b
done
popd