summaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorChris Johns <chrisj@rtems.org>2014-08-25 09:40:57 +1000
committerChris Johns <chrisj@rtems.org>2014-08-25 09:52:42 +1000
commit504e1de9de483f6f8ba54c5424c2327db1be6755 (patch)
tree60ab88ad3644813483776b622f9ede1071015dbf /tools
parentf750e82bbc904a60ea40116e34fa0a5495020c85 (diff)
gdb-python: Add waf script to install under a prefix.
Diffstat (limited to 'tools')
-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'])