gdb-python: Add waf script to install under a prefix.

This commit is contained in:
Chris Johns
2014-08-25 09:40:57 +10:00
parent f750e82bbc
commit 504e1de9de

23
tools/gdb/python/wscript Normal file
View File

@@ -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'])