summaryrefslogtreecommitdiff
path: root/doc/stdlib/make-library-index
diff options
context:
space:
mode:
Diffstat (limited to 'doc/stdlib/make-library-index')
-rwxr-xr-xdoc/stdlib/make-library-index42
1 files changed, 23 insertions, 19 deletions
diff --git a/doc/stdlib/make-library-index b/doc/stdlib/make-library-index
index ddbcd09f..04bcff91 100755
--- a/doc/stdlib/make-library-index
+++ b/doc/stdlib/make-library-index
@@ -7,27 +7,31 @@ FILE=$1
cp -f $FILE.template tmp
echo -n Building file index-list.prehtml ...
-for i in ../theories/*; do
- echo $i
+LIBDIRS="Init Logic Bool Arith NArith ZArith QArith Relations Sets Classes Setoids Lists Sorting Wellfounded FSets Reals Program Numbers Numbers/Natural/Abstract Numbers/Natural/Peano Numbers/Natural/Binary Numbers/Natural/BigN Numbers/Natural/SpecViaZ Numbers/Integer/Abstract Numbers/Integer/NatPairs Numbers/Integer/Binary Numbers/Integer/SpecViaZ Numbers/Integer/BigZ Numbers/NatInt Numbers/Cyclic/Abstract Numbers/Cyclic/Int31 Numbers/Cyclic/ZModulo Numbers/Cyclic/DoubleCyclic Numbers/Rational/BigQ Numbers/Rational/SpecViaQ Strings"
- d=`basename $i`
- if [ "$d" != "Num" -a "$d" != "CVS" ]; then
- for j in $i/*.v; do
- b=`basename $j .v`
- rm -f tmp2
- grep -q theories/$d/$b.v tmp
- a=$?
- if [ $a = 0 ]; then
- sed -e "s:theories/$d/$b.v:<a href=\"Coq.$d.$b.html\">$b</a>:g" tmp > tmp2
- mv -f tmp2 tmp
- else
- echo Warning: theories/$d/$b.v is missing in the template file
+for k in $LIBDIRS; do
+ i=theories/$k
+ echo $i
+
+ d=`basename $i`
+ if [ "$d" != "Num" -a "$d" != "CVS" ]; then
+ for j in $i/*.v; do
+ b=`basename $j .v`
+ rm -f tmp2
+ grep -q theories/$k/$b.v tmp
+ a=$?
+ if [ $a = 0 ]; then
+ p=`echo $k | sed 's:/:.:g'`
+ sed -e "s:theories/$k/$b.v:<a href=\"Coq.$p.$b.html\">$b</a>:g" tmp > tmp2
+ mv -f tmp2 tmp
+ else
+ echo Warning: theories/$k/$b.v is missing in the template file
+ fi
+ done
fi
- done
- fi
- rm -f tmp2
- sed -e "s/#$d#//" tmp > tmp2
- mv -f tmp2 tmp
+ rm -f tmp2
+ sed -e "s/#$d#//" tmp > tmp2
+ mv -f tmp2 tmp
done
a=`grep theories tmp`
if [ $? = 0 ]; then echo Warning: extra files:; echo $a; fi