1*2b949d04SAndroid Build Coastguard Worker#!/bin/sh 2*2b949d04SAndroid Build Coastguard Worker# Run doxygen such that the working directory is the source root. 3*2b949d04SAndroid Build Coastguard Worker# This is needed for various reasons (e.g. relative references in md files). 4*2b949d04SAndroid Build Coastguard Worker# Do not use directly. 5*2b949d04SAndroid Build Coastguard WorkerDOXYGEN="$1" 6*2b949d04SAndroid Build Coastguard WorkerDOXYFILE="$2" 7*2b949d04SAndroid Build Coastguard WorkerABS_TOP_SRCDIR="$3" 8*2b949d04SAndroid Build Coastguard Workercd "$ABS_TOP_SRCDIR" && exec "$DOXYGEN" "$DOXYFILE" 9