浏览代码

doc/doxygen: check refman.tex includes all files

Nathalie Furmento 12 年之前
父节点
当前提交
cdd059f4a1
共有 1 个文件被更改,包括 8 次插入0 次删除
  1. 8 0
      doc/doxygen/dev/checkDoc.sh

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

@@ -10,3 +10,11 @@ echo
 echo "Defined groups"
 grep ingroup chapters/api/*|awk -F':' '{print $2}'| awk 'NF == 2'|sort|uniq
 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
+