diff options
author | andreas_kupries <akupries@shaw.ca> | 2001-04-06 23:29:17 (GMT) |
---|---|---|
committer | andreas_kupries <akupries@shaw.ca> | 2001-04-06 23:29:17 (GMT) |
commit | 9777db5094c42eabbad41300b9a61e15b1998aae (patch) | |
tree | 7f32095ad28b0d89408cbc55bb85d0e0aa32b107 /unix/Makefile.in | |
parent | 6d043366e408d9c7434a567048ab86ba9b452790 (diff) | |
download | tcl-9777db5094c42eabbad41300b9a61e15b1998aae.zip tcl-9777db5094c42eabbad41300b9a61e15b1998aae.tar.gz tcl-9777db5094c42eabbad41300b9a61e15b1998aae.tar.bz2 |
2001-04-07 Andreas Kupries <andreas_kupries@users.sourceforge.net>
* unix/Makefile.in (checkdoc): New target, checking the
definitions as found in the compiled library against the
manpages to find undocumented public functionality.
* unix/mkLinks: Updated to include the new manpage.
* doc/UniCharIsAlpha.3: New manpage documenting the Unicode
character classification APIs [Bug #218720].
Diffstat (limited to 'unix/Makefile.in')
-rw-r--r-- | unix/Makefile.in | 20 |
1 files changed, 19 insertions, 1 deletions
diff --git a/unix/Makefile.in b/unix/Makefile.in index 1c8e612..f59fef4 100644 --- a/unix/Makefile.in +++ b/unix/Makefile.in @@ -5,7 +5,7 @@ # "autoconf" program (constructs like "@foo@" will get replaced in the # actual Makefile. # -# RCS: @(#) $Id: Makefile.in,v 1.72 2001/04/04 07:13:52 hobbs Exp $ +# RCS: @(#) $Id: Makefile.in,v 1.73 2001/04/06 23:29:17 andreas_kupries Exp $ VERSION = @TCL_VERSION@ @@ -1069,6 +1069,24 @@ checkstubs: done # +# Target to check that all public APIs which are not command +# implementations have an entry in section three of the distributed +# manpages. +# + +checkdoc: + -@for i in `nm -p $(TCL_LIB_FILE) | awk '$$3 ~ /Tcl_/ { print $$3 }' \ + | grep -v 'Cmd$$' | sort -n`; do \ + match=0; \ + for j in $(TOP_DIR)/doc/*.3; do \ + if [ `grep '\-' $$j | grep -c $$i` -gt 0 ]; then \ + match=1; \ + fi; \ + done; \ + if [ $$match -eq 0 ]; then echo $$i; fi \ + done + +# # Target to check for proper usage of UCHAR macro. # |