summaryrefslogtreecommitdiffstats
path: root/led/ratemon1
diff options
context:
space:
mode:
authorBryan Dunsmore <dunsmoreb@gmail.com>2013-11-29 23:43:24 -0500
committerGedare Bloom <gedare@rtems.org>2013-12-12 14:55:55 -0500
commit9df804f035840f22673f2e1f361d6622175cf370 (patch)
treeb67dfbf51f365d8140062308a0c5d6b04ce7c950 /led/ratemon1
parentConvert led/timeout_event example to Waf. (diff)
downloadrtems-examples-9df804f035840f22673f2e1f361d6622175cf370.tar.bz2
Convert led/ratemon1 example to Waf.
Diffstat (limited to 'led/ratemon1')
-rw-r--r--led/ratemon1/wscript15
1 files changed, 15 insertions, 0 deletions
diff --git a/led/ratemon1/wscript b/led/ratemon1/wscript
new file mode 100644
index 0000000..b842827
--- /dev/null
+++ b/led/ratemon1/wscript
@@ -0,0 +1,15 @@
+# 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 = 'ratemon1',
+ source = ['init.c'])
+