Gitiles
Code Review
Sign In
192.168.1.100
/
T103
/
refs/heads/Factory
/
.
/
meta
/
poky
/
scripts
/
wimac_doc.sh
blob: 2ea826718a674e8ae37b158cc0f65b15fea6823e [
file
] [
log
] [
blame
]
rjw
1f88458
2022-01-06 17:20:42 +0800
[
diff
] [
blame
]
1
#!/bin/bash
2
#
3
# @author Howard Chen
4
# @brief generate the top index for each module doc
5
SYSROOT
=
$1
6
for
i
in
$
{
SYSROOT
}/
doc
/*
;
7
do
8
if
[
-
d $
{
i
}
];
then
9
module
=
$
{
i
##*/}
10
echo
"<a href=\"${module}/index.html\">${module}</a>"
11
echo
"<p>"
12
fi
13
done