2013-08-14 19:58:56 -03:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
set -e
|
|
|
|
|
|
|
|
# work from either APM directory or above
|
|
|
|
[ -d ArduPlane ] || cd APM
|
|
|
|
|
2018-04-27 17:34:40 -03:00
|
|
|
export DOCS_OUTPUT_BASE=./docs
|
2013-08-14 19:58:56 -03:00
|
|
|
|
|
|
|
(
|
2018-04-27 17:34:40 -03:00
|
|
|
$DOCS_OUTPUT_BASE/build-libs.sh
|
|
|
|
$DOCS_OUTPUT_BASE/build-arduplane.sh
|
|
|
|
$DOCS_OUTPUT_BASE/build-arducopter.sh
|
|
|
|
$DOCS_OUTPUT_BASE/build-apmrover2.sh
|
2018-04-27 19:28:27 -03:00
|
|
|
$DOCS_OUTPUT_BASE/build-ardusub.sh
|
2018-04-27 17:34:40 -03:00
|
|
|
) > $DOCS_OUTPUT_BASE/build_docs.log 2>&1
|