summaryrefslogtreecommitdiff
path: root/Makefile.in
diff options
context:
space:
mode:
authorJoe Orton <notroj@users.noreply.github.com>2005-09-14 20:53:41 +0000
committerJoe Orton <notroj@users.noreply.github.com>2005-09-14 20:53:41 +0000
commit9164084158025d843dd3682ff08b7c87894313ed (patch)
treeccbab2632ee9425ae7adc3b688a8ca88cb4eb578 /Makefile.in
parent382c0a2f5e7345141325bc6626fe0f0ecca3f3ad (diff)
downloadneon-git-9164084158025d843dd3682ff08b7c87894313ed.tar.gz
* Makefile.in (doc-status): Add hacky target to see what is undocumented...
"for maintainer's use only".
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
+