avs_mtk_voice/meta/poky/scripts/wimac_doc.sh

14 lines
247 B
Bash
Raw Permalink Normal View History

2022-05-13 08:02:31 +00:00
#!/bin/bash
#
# @author Howard Chen
# @brief generate the top index for each module doc
SYSROOT=$1
for i in ${SYSROOT}/doc/* ;
do
if [ -d ${i} ]; then
module=${i##*/}
echo "<a href=\"${module}/index.html\">${module}</a>"
echo "<p>"
fi
done