summaryrefslogtreecommitdiffstats
path: root/Doc/Makefile
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2009-01-04 10:23:49 (GMT)
committerGeorg Brandl <georg@python.org>2009-01-04 10:23:49 (GMT)
commit700cf28f410521066f40671f1da7db0302d753fd (patch)
tree161e9bc80dfeeb1aa34ecebcc7a5acf9e2c41ded /Doc/Makefile
parent775aa4a026a9b6240a641b0edc5a8038afbb289b (diff)
downloadcpython-700cf28f410521066f40671f1da7db0302d753fd.zip
cpython-700cf28f410521066f40671f1da7db0302d753fd.tar.gz
cpython-700cf28f410521066f40671f1da7db0302d753fd.tar.bz2
Add "suspicious" builder which finds leftover markup in the HTML files.
Patch by Gabriel Genellina.
Diffstat (limited to 'Doc/Makefile')
-rw-r--r--Doc/Makefile6
1 files changed, 6 insertions, 0 deletions
diff --git a/Doc/Makefile b/Doc/Makefile
index b1b0e85..4e84b8c 100644
--- a/Doc/Makefile
+++ b/Doc/Makefile
@@ -24,6 +24,7 @@ help:
@echo " text to make plain text files"
@echo " changes to make an overview over all changed/added/deprecated items"
@echo " linkcheck to check all external links for integrity"
+ @echo " suspicious to check for suspicious markup in output text"
@echo " coverage to check documentation coverage for library and C API"
@echo " dist to create a \"dist\" directory with archived docs for download"
@@ -84,6 +85,11 @@ linkcheck: build
@echo "Link check complete; look for any errors in the above output " \
"or in build/$(BUILDER)/output.txt"
+suspicious: BUILDER = suspicious
+suspicious: build
+ @echo "Suspicious check complete; look for any errors in the above output " \
+ "or in build/$(BUILDER)/suspicious.txt"
+
coverage: BUILDER = coverage
coverage: build
@echo "Coverage finished; see c.txt and python.txt in build/coverage"