summaryrefslogtreecommitdiff
path: root/posix_api/psx_sched_report/wscript
blob: 0cb9a52d34123dcf37b6227f49b49757068a6471 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
# 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 cprogram',
        target = 'psx_sched_report.exe',
        source = ['test.c'],
        lib = ['c'])