mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-01-02 14:13:42 -04:00
0243c92d1e
Signed-off-by: Patrick José Pereira <patrickelectric@gmail.com>
16 lines
225 B
Bash
Executable File
16 lines
225 B
Bash
Executable File
#!/bin/bash
|
|
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
|
|
|
cd $DIR/..
|
|
|
|
. docs/setup.sh
|
|
|
|
if [ ! -f $DOCS_OUTPUT_BASE/tags/libraries ];
|
|
then
|
|
echo "Must build libraries first"
|
|
exit 0
|
|
fi
|
|
|
|
doxygen docs/config/ardusub
|
|
|