summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--tools/gdb/python/wscript23
1 files changed, 23 insertions, 0 deletions
diff --git a/tools/gdb/python/wscript b/tools/gdb/python/wscript
new file mode 100644
index 0000000..22d44e8
--- /dev/null
+++ b/tools/gdb/python/wscript
@@ -0,0 +1,23 @@
+#
+# Install the RTEMS gdb python
+#
+
+def configure(conf):
+ conf.load('python')
+
+def build(bld):
+ bld.install_files('${PREFIX}/share/gdb/python/rtems',
+ ['chains.py',
+ 'classic.py',
+ 'classic_printer.py',
+ 'heaps.py',
+ 'helper.py',
+ 'main.py',
+ 'objects.py',
+ 'pretty.py',
+ 'rtems.py',
+ 'sparc.py',
+ 'supercore.py',
+ 'supercore_printer.py',
+ 'threads.py',
+ 'watchdog.py'])