summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorjoe <joe@61a7d7f5-40b7-0310-9c16-bb0ea8cb1845>2005-09-14 20:53:41 +0000
committerjoe <joe@61a7d7f5-40b7-0310-9c16-bb0ea8cb1845>2005-09-14 20:53:41 +0000
commit298cbd6338b5fe1693477959ae96d9568f3f458b (patch)
treeccbab2632ee9425ae7adc3b688a8ca88cb4eb578 /Makefile.in
parentdecf05925cfeaf9f90c9ce68f419040d8608539f (diff)
downloadneon-298cbd6338b5fe1693477959ae96d9568f3f458b.tar.gz
* Makefile.in (doc-status): Add hacky target to see what is undocumented...
"for maintainer's use only". git-svn-id: http://svn.webdav.org/repos/projects/neon/trunk@697 61a7d7f5-40b7-0310-9c16-bb0ea8cb1845
Diffstat (limited to 'Makefile.in')
-rw-r--r--Makefile.in7
1 files changed, 7 insertions, 0 deletions
diff --git a/Makefile.in b/Makefile.in
index 4d75a3f..d005f86 100644
--- a/Makefile.in
+++ b/Makefile.in
@@ -198,3 +198,10 @@ compile-gmo:
echo "> Compiling \"$$f\" catalog:"; \
$(MSGFMT) --statistics -c -o po/$$f.gmo $(top_srcdir)/po/$$f.po; \
done
+
+doc-status:
+ @echo -n "Missing docs for:"
+ @for f in `nm src/.libs/libneon.so | grep ' T ' | colrm 1 11`; do \
+ test -f doc/man/$$f.3 || echo -n " $$f"; \
+ done; echo
+