summaryrefslogtreecommitdiffstats
path: root/doc/wscript
blob: f574e69bdbda72da59533b6ea68245bd1e2e4448 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
#! /usr/bin/env python
# encoding: utf-8
# hhaim, 2014 (IL) base on WAF book

"""
call 'waf --targets=waf.pdf' or use 'waf list' to see the targets available
"""

VERSION='0.0.1'
APPNAME='wafdocs'

import ws_main


top = '.'
out = 'build'


def options(opt):
    ws_main.options(opt)


def configure(conf):
    ws_main.configure(conf)


def create_toc (bld):
    ws_main.create_toc(bld)

def build(bld):
    ws_main.build(bld)


def build_info(bld):
    ws_main.build_info(bld)

def pkg(bld):
    ws_main.pkg(bld)

def release(bld):
    ws_main.release(bld)

def publish(bld):
    ws_main.publish(bld)

def publish_test(bld):
    ws_main.publish_test(bld)

def publish_ext(bld):
    ws_main.publish_ext(bld)

def publish_web(bld):
    ws_main.publish_web(bld)

def publish_perf(bld):
    ws_main.publish_perf(bld)

def sync(bld):
    ws_main.sync(bld)

def test(bld):
    ws_main.test(bld)

def show(bld):
    ws_main.show(bld)

def publish_both(bld):
    ws_main.publish_both(bld)