summaryrefslogtreecommitdiffstats
path: root/classic_api
diff options
context:
space:
mode:
authorGedare Bloom <gedare@rtems.org>2013-12-06 14:57:30 -0500
committerGedare Bloom <gedare@rtems.org>2013-12-12 14:55:56 -0500
commit257716de146683f9bab5ccb9164b359470b7317b (patch)
treee2d406594bf604c908118fdd8f5cbca3d66a8506 /classic_api
parentled: complex1: Add support for building with waf (diff)
downloadrtems-examples-257716de146683f9bab5ccb9164b359470b7317b.tar.bz2
waf: append .exe to target names
Diffstat (limited to 'classic_api')
-rw-r--r--classic_api/classic_signal/wscript2
-rw-r--r--classic_api/triple_period/wscript2
2 files changed, 2 insertions, 2 deletions
diff --git a/classic_api/classic_signal/wscript b/classic_api/classic_signal/wscript
index 501fb78..981b61b 100644
--- a/classic_api/classic_signal/wscript
+++ b/classic_api/classic_signal/wscript
@@ -5,5 +5,5 @@ def build(bld):
rtems.build(bld)
bld(features = 'c cprogram',
- target = 'classic_signal',
+ target = 'classic_signal.exe',
source = ['test.c'])
diff --git a/classic_api/triple_period/wscript b/classic_api/triple_period/wscript
index 1009372..593f362 100644
--- a/classic_api/triple_period/wscript
+++ b/classic_api/triple_period/wscript
@@ -5,5 +5,5 @@ def build(bld):
rtems.build(bld)
bld(features = 'c cprogram',
- target = 'triple_period',
+ target = 'triple_period.exe',
source = ['init.c', 'tasks.c'])