Tools: fixed build_all.sh script

This commit is contained in:
Andrew Tridgell 2012-12-19 11:33:23 +11:00
parent 62d7fd1a26
commit 4ee969f439
2 changed files with 6 additions and 2 deletions

View File

@ -8,7 +8,7 @@ set -x
echo "Testing ArduPlane build"
pushd ArduPlane
for b in all apm2 apm2beta hil hilsensors hil-apm2 hilsensors-apm2 sitl sitl-mount sitl-newcontrollers; do
for b in all apm2 apm2beta apm1-hil apm1-hilsensors apm2-hil apm2-hilsensors sitl sitl-mount sitl-newcontrollers; do
pwd
make clean
make $b
@ -17,7 +17,7 @@ popd
echo "Testing ArduCopter build"
pushd ArduCopter
for b in all apm2 apm2beta hil sitl heli dmp; do
for b in all apm2 apm2beta apm1-hil apm2-hil sitl heli dmp; do
pwd
make clean
make $b

View File

@ -9,6 +9,7 @@ clidisabled-nologging: EXTRAFLAGS += "-DCLI_ENABLED=DISABLED "
clidisabled-nologging: nologging
hil: EXTRAFLAGS += "-DHIL_MODE=HIL_MODE_ATTITUDE "
hil: apm1
hilsensors: EXTRAFLAGS += "-DHIL_MODE=HIL_MODE_SENSORS "
@ -57,6 +58,9 @@ obc: EXTRAFLAGS += "-DTELEMETRY_UART2=ENABLED "
obc: EXTRAFLAGS += "-DSERIAL_BUFSIZE=512 "
obc: apm2
sitl-mount: EXTRAFLAGS += "-DMOUNT=ENABLED"
sitl-mount: sitl
etags:
cd .. && etags -f ArduCopter/TAGS --langmap=C++:.pde.cpp.h $$(git ls-files ArduCopter libraries)