summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChirayu Desai <cdesai@cyanogenmod.org>2013-12-04 22:26:19 +0530
committerGedare Bloom <gedare@rtems.org>2013-12-12 14:55:56 -0500
commit154b0723d3a5093e12b8ff4defabd46902979439 (patch)
tree416c920f1d131fa32d523f758e34f28a541547fa
parentc5e5f0da0eb44419dbc4eca52a5c55ad8911ecde (diff)
misc: adamain: Add support for building waf
But do not build it by default yet. Also see commit 9dd07ee6bb99bf57e7a9b5fb819dad88f2657ac4
-rw-r--r--misc/adamain/wscript14
1 files changed, 14 insertions, 0 deletions
diff --git a/misc/adamain/wscript b/misc/adamain/wscript
new file mode 100644
index 0000000..0f9d312
--- /dev/null
+++ b/misc/adamain/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 = 'adamain.exe',
+ source = ['adacode.c', 'rtems_init.c'])