blob: 2ea826718a674e8ae37b158cc0f65b15fea6823e [file] [log] [blame]
rjw1f884582022-01-06 17:20:42 +08001#!/bin/bash
2#
3# @author Howard Chen
4# @brief generate the top index for each module doc
5SYSROOT=$1
6for i in ${SYSROOT}/doc/* ;
7do
8 if [ -d ${i} ]; then
9 module=${i##*/}
10 echo "<a href=\"${module}/index.html\">${module}</a>"
11 echo "<p>"
12 fi
13done