summaryrefslogtreecommitdiff
path: root/classic_api/triple_period/wscript
blob: 1009372d499fa969b5c3743686e8607835a9c3b0 (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',
        source = ['init.c', 'tasks.c'])