summaryrefslogtreecommitdiffstats
path: root/linux/wscript
blob: da735832a3b94154da1fc07d48464c9d29db0844 (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
#!/usr/bin/env python
# encoding: utf-8
#hhaim

import ws_main

#mandatory ....
top = ws_main.top
out = ws_main.out


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


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


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


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