[examples-v2 commit] waf: append .exe to target names

Gedare Bloom gedare at rtems.org
Thu Dec 12 19:49:55 UTC 2013


Module:    examples-v2
Branch:    master
Commit:    257716de146683f9bab5ccb9164b359470b7317b
Changeset: http://git.rtems.org/examples-v2/commit/?id=257716de146683f9bab5ccb9164b359470b7317b

Author:    Gedare Bloom <gedare at rtems.org>
Date:      Fri Dec  6 14:57:30 2013 -0500

waf: append .exe to target names

---

 classic_api/classic_signal/wscript |    2 +-
 classic_api/triple_period/wscript  |    2 +-
 cxx/libcpp/wscript                 |    2 +-
 file_io/fdopen/wscript             |    2 +-
 file_io/filerdback/wscript         |    2 +-
 file_io/repeated_opens/wscript     |    2 +-
 gdb/overwrite/wscript              |    2 +-
 led/delay/wscript                  |    2 +-
 led/event_server/wscript           |    2 +-
 led/msg_server/wscript             |    2 +-
 led/ratemon1/wscript               |    2 +-
 led/ratemon2/wscript               |    2 +-
 led/ratemon_cond_server/wscript    |    2 +-
 led/sem_server/wscript             |    2 +-
 led/timeout_event/wscript          |    2 +-
 led/timer/wscript                  |    2 +-
 led/timer_server/wscript           |    2 +-
 misc/applib/wscript                |    2 +-
 ticker/low_ticker/wscript          |    2 +-
 ticker/low_ticker1/wscript         |    2 +-
 ticker/low_ticker2/wscript         |    2 +-
 ticker/ticker/wscript              |    2 +-
 uboot/uboot_getenv/wscript         |    2 +-
 23 files changed, 23 insertions(+), 23 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'])
diff --git a/cxx/libcpp/wscript b/cxx/libcpp/wscript
index 77aa4fe..5c5c8b9 100644
--- a/cxx/libcpp/wscript
+++ b/cxx/libcpp/wscript
@@ -10,6 +10,6 @@ def build(bld):
     rtems.build(bld)
 
     bld(features = 'cxx cxxstlib',
-        target = 'foo',
+        target = 'foo.exe',
         source = ['foo.cc', 'foo1.cpp'])
 
diff --git a/file_io/fdopen/wscript b/file_io/fdopen/wscript
index 71333ce..063f4bc 100644
--- a/file_io/fdopen/wscript
+++ b/file_io/fdopen/wscript
@@ -4,5 +4,5 @@ def build(bld):
     rtems.build(bld)
 
     bld(features = 'c cprogram',
-        target = 'test',
+        target = 'test.exe',
         source = ['test.c'])
diff --git a/file_io/filerdback/wscript b/file_io/filerdback/wscript
index 71333ce..063f4bc 100644
--- a/file_io/filerdback/wscript
+++ b/file_io/filerdback/wscript
@@ -4,5 +4,5 @@ def build(bld):
     rtems.build(bld)
 
     bld(features = 'c cprogram',
-        target = 'test',
+        target = 'test.exe',
         source = ['test.c'])
diff --git a/file_io/repeated_opens/wscript b/file_io/repeated_opens/wscript
index 71333ce..063f4bc 100644
--- a/file_io/repeated_opens/wscript
+++ b/file_io/repeated_opens/wscript
@@ -4,5 +4,5 @@ def build(bld):
     rtems.build(bld)
 
     bld(features = 'c cprogram',
-        target = 'test',
+        target = 'test.exe',
         source = ['test.c'])
diff --git a/gdb/overwrite/wscript b/gdb/overwrite/wscript
index 378b9fb..5fd867e 100644
--- a/gdb/overwrite/wscript
+++ b/gdb/overwrite/wscript
@@ -10,5 +10,5 @@ def build(bld):
     rtems.build(bld)
 
     bld(features = 'c cprogram',
-        target = 'overwrite',
+        target = 'overwrite.exe',
         source = ['overwrite.c', 'rtems_init.c'])
diff --git a/led/delay/wscript b/led/delay/wscript
index 99b1aa8..41b253f 100644
--- a/led/delay/wscript
+++ b/led/delay/wscript
@@ -10,6 +10,6 @@ def build(bld):
     rtems.build(bld)
 
     bld(features = 'c cprogram',
-        target = 'delay',
+        target = 'delay.exe',
         source = ['init.c'])
 
diff --git a/led/event_server/wscript b/led/event_server/wscript
index f581d2f..79e12ac 100644
--- a/led/event_server/wscript
+++ b/led/event_server/wscript
@@ -10,6 +10,6 @@ def build(bld):
     rtems.build(bld)
 
     bld(features = 'c cprogram',
-        target = 'event_server',
+        target = 'event_server.exe',
         source = ['init.c'])
 
diff --git a/led/msg_server/wscript b/led/msg_server/wscript
index 9e7ab58..d300c91 100644
--- a/led/msg_server/wscript
+++ b/led/msg_server/wscript
@@ -10,6 +10,6 @@ def build(bld):
     rtems.build(bld)
 
     bld(features = 'c cprogram',
-        target = 'msg_server',
+        target = 'msg_server.exe',
         source = ['init.c'])
 
diff --git a/led/ratemon1/wscript b/led/ratemon1/wscript
index b842827..e06d7fb 100644
--- a/led/ratemon1/wscript
+++ b/led/ratemon1/wscript
@@ -10,6 +10,6 @@ def build(bld):
     rtems.build(bld)
 
     bld(features = 'c cprogram',
-        target = 'ratemon1',
+        target = 'ratemon1.exe',
         source = ['init.c'])
 
diff --git a/led/ratemon2/wscript b/led/ratemon2/wscript
index 9ac520f..b5c74bc 100644
--- a/led/ratemon2/wscript
+++ b/led/ratemon2/wscript
@@ -10,6 +10,6 @@ def build(bld):
     rtems.build(bld)
 
     bld(features = 'c cprogram',
-        target = 'ratemon2',
+        target = 'ratemon2.exe',
         source = ['init.c'])
 
diff --git a/led/ratemon_cond_server/wscript b/led/ratemon_cond_server/wscript
index a76aa70..ebb0e52 100644
--- a/led/ratemon_cond_server/wscript
+++ b/led/ratemon_cond_server/wscript
@@ -10,6 +10,6 @@ def build(bld):
     rtems.build(bld)
 
     bld(features = 'c cprogram',
-        target = 'ratemon_cond_server',
+        target = 'ratemon_cond_server.exe',
         source = ['test.c'])
 
diff --git a/led/sem_server/wscript b/led/sem_server/wscript
index a96d070..a2fe246 100644
--- a/led/sem_server/wscript
+++ b/led/sem_server/wscript
@@ -10,6 +10,6 @@ def build(bld):
     rtems.build(bld)
 
     bld(features = 'c cprogram',
-        target = 'sem_server',
+        target = 'sem_server.exe',
         source = ['init.c'])
 
diff --git a/led/timeout_event/wscript b/led/timeout_event/wscript
index 5674e40..10d48c2 100644
--- a/led/timeout_event/wscript
+++ b/led/timeout_event/wscript
@@ -10,6 +10,6 @@ def build(bld):
     rtems.build(bld)
 
     bld(features = 'c cprogram',
-        target = 'timeout_event',
+        target = 'timeout_event.exe',
         source = ['init.c'])
 
diff --git a/led/timer/wscript b/led/timer/wscript
index 585bd25..e8df564 100644
--- a/led/timer/wscript
+++ b/led/timer/wscript
@@ -10,6 +10,6 @@ def build(bld):
     rtems.build(bld)
 
     bld(features = 'c cprogram',
-        target = 'timer',
+        target = 'timer.exe',
         source = ['init.c'])
 
diff --git a/led/timer_server/wscript b/led/timer_server/wscript
index a65659b..df25201 100644
--- a/led/timer_server/wscript
+++ b/led/timer_server/wscript
@@ -10,6 +10,6 @@ def build(bld):
     rtems.build(bld)
 
     bld(features = 'c cprogram',
-        target = 'timer_server',
+        target = 'timer_server.exe',
         source = ['init.c'])
 
diff --git a/misc/applib/wscript b/misc/applib/wscript
index a575aa0..0c31a3c 100644
--- a/misc/applib/wscript
+++ b/misc/applib/wscript
@@ -10,5 +10,5 @@ def build(bld):
     rtems.build(bld)
 
     bld(features = 'c cstlib',
-        target = 'UserLib',
+        target = 'UserLib.exe',
         source = ['file_1.c'])
diff --git a/ticker/low_ticker/wscript b/ticker/low_ticker/wscript
index 0b9d795..aef9de4 100644
--- a/ticker/low_ticker/wscript
+++ b/ticker/low_ticker/wscript
@@ -10,6 +10,6 @@ def build(bld):
     rtems.build(bld)
 
     bld(features = 'c cprogram',
-        target = 'low_ticker',
+        target = 'low_ticker.exe',
         source = ['init.c'])
 
diff --git a/ticker/low_ticker1/wscript b/ticker/low_ticker1/wscript
index 2c11622..bf08e0c 100644
--- a/ticker/low_ticker1/wscript
+++ b/ticker/low_ticker1/wscript
@@ -10,6 +10,6 @@ def build(bld):
     rtems.build(bld)
 
     bld(features = 'c cprogram',
-        target = 'low_ticker1',
+        target = 'low_ticker1.exe',
         source = ['init.c'])
 
diff --git a/ticker/low_ticker2/wscript b/ticker/low_ticker2/wscript
index c126578..10d300d 100644
--- a/ticker/low_ticker2/wscript
+++ b/ticker/low_ticker2/wscript
@@ -10,6 +10,6 @@ def build(bld):
     rtems.build(bld)
 
     bld(features = 'c cprogram',
-        target = 'low_ticker2',
+        target = 'low_ticker2.exe',
         source = ['init.c'])
 
diff --git a/ticker/ticker/wscript b/ticker/ticker/wscript
index fbba4d3..ae47e87 100644
--- a/ticker/ticker/wscript
+++ b/ticker/ticker/wscript
@@ -10,6 +10,6 @@ def build(bld):
     rtems.build(bld)
 
     bld(features = 'c cprogram',
-        target = 'ticker',
+        target = 'ticker.exe',
         source = ['init.c'])
 
diff --git a/uboot/uboot_getenv/wscript b/uboot/uboot_getenv/wscript
index 21c128a..f09cbed 100644
--- a/uboot/uboot_getenv/wscript
+++ b/uboot/uboot_getenv/wscript
@@ -10,6 +10,6 @@ def build(bld):
     rtems.build(bld)
 
     bld(features = 'c cprogram',
-        target = 'uboot_getenv',
+        target = 'uboot_getenv.exe',
         source = ['test.c'])
 




More information about the vc mailing list