aboutsummaryrefslogtreecommitdiff
path: root/AT91SAM7S256/armdebug/SConscript
diff options
context:
space:
mode:
Diffstat (limited to 'AT91SAM7S256/armdebug/SConscript')
-rw-r--r--AT91SAM7S256/armdebug/SConscript13
1 files changed, 13 insertions, 0 deletions
diff --git a/AT91SAM7S256/armdebug/SConscript b/AT91SAM7S256/armdebug/SConscript
new file mode 100644
index 0000000..c495847
--- /dev/null
+++ b/AT91SAM7S256/armdebug/SConscript
@@ -0,0 +1,13 @@
+# This scons build script is used by NxOS
+
+from glob import glob
+
+Import('env')
+
+
+for source in glob('Debugger/*.[cS]'):
+ obj = env.Object(source.split('.')[0], source)
+ env.Append(NXOS_DEBUG=obj)
+
+if env['WITH_DOXYGEN']:
+ env.Doxygen('Doxyfile')