source: rtems-tools/wscript @ 066a64b

4.104.115
Last change on this file since 066a64b was 87e0e76, checked in by Chris Johns <chrisj@…>, on 09/13/14 at 02:09:16

Refactor code into the RTEMS Toolkit.

  • Property mode set to 100644
File size: 2.5 KB
Line 
1#
2# RTEMS Tools Project (http://www.rtems.org/)
3# Copyright 2014 Chris Johns (chrisj@rtems.org)
4# All rights reserved.
5#
6# This file is part of the RTEMS Tools package in 'rtems-tools'.
7#
8# Redistribution and use in source and binary forms, with or without
9# modification, are permitted provided that the following conditions are met:
10#
11# 1. Redistributions of source code must retain the above copyright notice,
12# this list of conditions and the following disclaimer.
13#
14# 2. Redistributions in binary form must reproduce the above copyright notice,
15# this list of conditions and the following disclaimer in the documentation
16# and/or other materials provided with the distribution.
17#
18# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
19# AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
20# IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
21# ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE
22# LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
23# CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
24# SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
25# INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
26# CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
27# ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
28# POSSIBILITY OF SUCH DAMAGE.
29#
30
31subdirs = ['rtemstoolkit',
32           'linkers',
33           'tester',
34           'tools/gdb/python']
35
36def recurse(ctx):
37    for sd in subdirs:
38        ctx.recurse(sd)
39
40def options(ctx):
41    ctx.add_option('--rtems-version',
42                   default = '4.11',
43                   dest='rtems_version',
44                   help = 'Set the RTEMS version')
45    ctx.add_option('--c-opts',
46                   default = '-O2',
47                   dest='c_opts',
48                   help = 'Set build options, default: -O2.')
49    recurse(ctx)
50
51def configure(ctx):
52    try:
53        ctx.load("doxygen", tooldir = 'waf-tools')
54    except:
55        pass
56    ctx.env.C_OPTS = ctx.options.c_opts.split(',')
57    ctx.env.RTEMS_VERSION = ctx.options.rtems_version
58    recurse(ctx)
59
60def build(ctx):
61    recurse(ctx)
62
63def install(ctx):
64    recurse(ctx)
65
66def clean(ctx):
67    recurse(ctx)
68
69def rebuild(ctx):
70    import waflib.Options
71    waflib.Options.commands.extend(['clean', 'build'])
72
73#
74# The doxy command.
75#
76from waflib import Build
77class doxy(Build.BuildContext):
78    fun = 'build'
79    cmd = 'doxy'
Note: See TracBrowser for help on using the repository browser.