summaryrefslogtreecommitdiffstats
path: root/tools/gdb/python/wscript
blob: 22d44e803e5a319d66e691a07146c7c9c85f0126 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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'])