summaryrefslogtreecommitdiff
path: root/classic_api/triple_period/wscript
blob: 593f362d9c25231a68e5073be316904c17d7b584 (plain)
1
2
3
4
5
6
7
8
9
# Waf build script for an RTEMS triple_period 
import rtems_waf.rtems as rtems

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

    bld(features = 'c cprogram',
        target = 'triple_period.exe',
        source = ['init.c', 'tasks.c'])