summaryrefslogtreecommitdiff
path: root/c11/c11_key01/wscript
diff options
context:
space:
mode:
Diffstat (limited to 'c11/c11_key01/wscript')
-rw-r--r--c11/c11_key01/wscript14
1 files changed, 14 insertions, 0 deletions
diff --git a/c11/c11_key01/wscript b/c11/c11_key01/wscript
new file mode 100644
index 0000000..1816774
--- /dev/null
+++ b/c11/c11_key01/wscript
@@ -0,0 +1,14 @@
+# Copyright 2017 Joel Sherrill (joel.sherrill@oarcorp.com)
+#
+# 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 = 'c11_key01.exe',
+ source = ['rtems_config.c', 'test.c'])