[examples-v2 commit] added wscript to triple_period and classic_signal subdirs
Gedare Bloom
gedare at rtems.org
Thu Dec 12 19:49:53 UTC 2013
Module: examples-v2
Branch: master
Commit: 263d7a190c57f620f53df5d859d083cddb272bfc
Changeset: http://git.rtems.org/examples-v2/commit/?id=263d7a190c57f620f53df5d859d083cddb272bfc
Author: Daniel Ramirez <javamonn at gmail.com>
Date: Thu Nov 28 15:25:42 2013 -0600
added wscript to triple_period and classic_signal subdirs
---
classic_api/classic_signal/wscript | 9 +++++++++
classic_api/triple_period/wscript | 9 +++++++++
classic_api/wscript | 2 ++
3 files changed, 20 insertions(+), 0 deletions(-)
diff --git a/classic_api/classic_signal/wscript b/classic_api/classic_signal/wscript
new file mode 100644
index 0000000..501fb78
--- /dev/null
+++ b/classic_api/classic_signal/wscript
@@ -0,0 +1,9 @@
+# Waf build script for an RTEMS classic_signal'
+import rtems_waf.rtems as rtems
+
+def build(bld):
+ rtems.build(bld)
+
+ bld(features = 'c cprogram',
+ target = 'classic_signal',
+ source = ['test.c'])
diff --git a/classic_api/triple_period/wscript b/classic_api/triple_period/wscript
new file mode 100644
index 0000000..487225a
--- /dev/null
+++ b/classic_api/triple_period/wscript
@@ -0,0 +1,9 @@
+# Waf build script for an RTEMS
+import rtems_waf.rtems as rtems
+
+def build(bld):
+ rtems.build(bld)
+
+ bld(features = 'c cprogram',
+ target = 'triple_period',
+ source = ['init.c', 'tasks.c'])
diff --git a/classic_api/wscript b/classic_api/wscript
index 9ef62ec..ee6d7c7 100644
--- a/classic_api/wscript
+++ b/classic_api/wscript
@@ -6,3 +6,5 @@
import rtems_waf.rtems as rtems
def build(bld):
+ bld.recurse('classic_signal')
+ bld.recurse('triple_period')
More information about the vc
mailing list