mirror of https://github.com/ArduPilot/ardupilot
40 lines
501 B
Bash
40 lines
501 B
Bash
|
#!/bin/bash
|
||
|
# build all targets for PX4
|
||
|
# This helps when doing large merges
|
||
|
# Andrew Tridgell, February 2013
|
||
|
|
||
|
set -e
|
||
|
set -x
|
||
|
|
||
|
. config.mk
|
||
|
|
||
|
echo "Testing ArduPlane build"
|
||
|
pushd ArduPlane
|
||
|
make px4-clean
|
||
|
make px4
|
||
|
popd
|
||
|
|
||
|
echo "Testing ArduCopter build"
|
||
|
pushd ArduCopter
|
||
|
make px4-clean
|
||
|
make px4
|
||
|
popd
|
||
|
|
||
|
echo "Testing APMrover2 build"
|
||
|
pushd APMrover2
|
||
|
make px4-clean
|
||
|
make px4
|
||
|
popd
|
||
|
|
||
|
echo "Testing PX4IO build"
|
||
|
pushd "$PX4_ROOT"
|
||
|
make clean
|
||
|
make configure_px4io
|
||
|
make
|
||
|
make clean
|
||
|
make configure_px4fmu
|
||
|
popd
|
||
|
|
||
|
|
||
|
exit 0
|