]> git.rkrishnan.org Git - tahoe-lafs/tahoe-lafs.git/commitdiff
Sun Jun 24 00:23:19 BST 2012 david-sarah@jacaranda.org
authorDaira Hopwood <daira@jacaranda.org>
Thu, 5 Sep 2013 18:16:57 +0000 (19:16 +0100)
committerDaira Hopwood <daira@jacaranda.org>
Thu, 5 Sep 2013 18:16:57 +0000 (19:16 +0100)
  * Makefile: Add 'check-rst' target to check .rst files for errors. Also add 'doc-checks' which at the moment just runs check-rst, but might do more in future. fixes #1780

Makefile

index 38bb647994425717c8d83bbffb1211caf410abcd..7b6a895dec77f92af2c3cf26a538c210a016bf8c 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -145,6 +145,12 @@ check-umids:
        -$(PYTHON) misc/coding_tools/check-umids.py `find $(SOURCES) -name '*.py'`
        @echo
 
+doc-checks: check-rst
+
+check-rst:
+       @for x in `find *.rst docs -name "*.rst"`; do rst2html -v $${x} >/dev/null; done 2>&1 |grep -v 'Duplicate implicit target name:'
+       @echo
+
 count-lines:
        @echo -n "files: "
        @find src -name '*.py' |grep -v /build/ |wc -l