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

# Waf build script for an RTEMS Hello
import rtems_waf.rtems as rtems

def build(bld):
    rtems.build(bld)

    bld(features = 'c cstlib',
        target = 'UserLib',
        source = ['file_1.c'])