blob: 2ea826718a674e8ae37b158cc0f65b15fea6823e [file] [log] [blame]
#!/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