summaryrefslogtreecommitdiffstats
path: root/hello/posix_hello_world/wscript
diff options
context:
space:
mode:
Diffstat (limited to 'hello/posix_hello_world/wscript')
-rw-r--r--hello/posix_hello_world/wscript14
1 files changed, 14 insertions, 0 deletions
diff --git a/hello/posix_hello_world/wscript b/hello/posix_hello_world/wscript
new file mode 100644
index 0000000..c02422e
--- /dev/null
+++ b/hello/posix_hello_world/wscript
@@ -0,0 +1,14 @@
+# 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 = 'posix_hello.exe',
+ source = ['test.c'])