summaryrefslogtreecommitdiffstats
path: root/ticker/ticker_stackchk/wscript
diff options
context:
space:
mode:
Diffstat (limited to 'ticker/ticker_stackchk/wscript')
-rw-r--r--ticker/ticker_stackchk/wscript15
1 files changed, 15 insertions, 0 deletions
diff --git a/ticker/ticker_stackchk/wscript b/ticker/ticker_stackchk/wscript
new file mode 100644
index 0000000..6f4ae3e
--- /dev/null
+++ b/ticker/ticker_stackchk/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 = 'ticker_stackchk.exe',
+ source = ['init.c'])
+