summaryrefslogtreecommitdiffstats
path: root/hello/wscript
blob: 851591884bf5f39ba2c28cccea8019aabbb829c5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
# Copyright 2013 Gedare Bloom (gedare@rtems.org)
#
# This file's license is 2-clause BSD as in this distribution's LICENSE.2 file.
#

import rtems_waf.rtems as rtems

def build(bld):
    bld.recurse('hello_world_c')
    if rtems.check_posix:
        bld.recurse('posix_hello_world')
        bld.recurse('both_hello')