diff options
author | Olivier Tilloy <olivier@tilloy.net> | 2010-02-16 16:35:17 +0100 |
---|---|---|
committer | Olivier Tilloy <olivier@tilloy.net> | 2010-02-16 16:35:17 +0100 |
commit | c268eec8e6b2f74348fd5ca5e4bbc96b0c1309c0 (patch) | |
tree | f3d984e5b8c5f96c2490da535f8c08e17c90d1a9 /doc/SConscript | |
parent | 314a33d945bc69c0a8cf72d3ec47e39d0d01e9bf (diff) | |
download | pyexiv2-c268eec8e6b2f74348fd5ca5e4bbc96b0c1309c0.tar.gz |
Dispatch build targets.
Diffstat (limited to 'doc/SConscript')
-rw-r--r-- | doc/SConscript | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/doc/SConscript b/doc/SConscript index aac5b70..3ecab1d 100644 --- a/doc/SConscript +++ b/doc/SConscript @@ -25,4 +25,6 @@ def build_doc(target, source, env): return sphinx.statuscode env = Environment() -env.Command(output, sources, build_doc) +doc = env.Command(output, sources, build_doc) +env.Alias('doc', doc) + |