Browse Source

doc/doxygen: check refman.tex includes all files

Nathalie Furmento 12 years ago
parent
commit
cdd059f4a1
1 changed files with 8 additions and 0 deletions
  1. 8 0
      doc/doxygen/dev/checkDoc.sh

+ 8 - 0
doc/doxygen/dev/checkDoc.sh

@@ -10,3 +10,11 @@ echo
 echo "Defined groups"
 echo "Defined groups"
 grep ingroup chapters/api/*|awk -F':' '{print $2}'| awk 'NF == 2'|sort|uniq
 grep ingroup chapters/api/*|awk -F':' '{print $2}'| awk 'NF == 2'|sort|uniq
 echo
 echo
+
+for f in ../../build/doc/doxygen/latex/*tex ; do
+    x=$(grep $(basename $f .tex) refman.tex)
+    if test -z "$x" ; then
+	echo Error. $f not included in refman.tex
+    fi
+done
+