diff options
Diffstat (limited to 'lib/talloc/wscript')
-rw-r--r-- | lib/talloc/wscript | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/talloc/wscript b/lib/talloc/wscript index 49eac6e6e6..b4cb84bbd8 100644 --- a/lib/talloc/wscript +++ b/lib/talloc/wscript @@ -141,3 +141,10 @@ def reconfigure(ctx): '''reconfigure if config scripts have changed''' import samba_utils samba_utils.reconfigure(ctx) + + +def pydoctor(ctx): + '''build python apidocs''' + cmd='PYTHONPATH=bin/python pydoctor --project-name=talloc --project-url=http://talloc.samba.org/ --make-html --docformat=restructuredtext --introspect-c-modules --add-module bin/python/talloc.*' + print("Running: %s" % cmd) + os.system(cmd) |