2008-10-19 19:59:31 +00:00
|
|
|
VPATH = @srcdir@
|
|
|
|
srcdir = @srcdir@
|
|
|
|
|
2010-02-24 Phil Muldoon <pmuldoon@redhat.com>
Tom Tromey <tromey@redhat.com>
Thiago Jung Bauermann <bauerman@br.ibm.com>
* python/python.c (_initialize_python): Call
gdbpy_initialize_symtabs, gdbpy_initialize_symbols and
gdbpy_initialize_blocks.
* python/python-internal.h: Declare struct symbol, block and
symtab_and_line. Declare block_object_type and
symbol_object_type
(gdbpy_lookup_symbol gdbpy_block_for_pc)
(symtab_and_line_to_sal_object, symtab_to_symtab_object)
(symbol_to_symbol_object, block_to_block_object)
(gdbpy_initialize_symtabs,gdbpy_initialize_symbols)
(gdbpy_initialize_blocks ): Declare.
* python/py-frame.c (frapy_block, frapy_function, frapy_find_sal)
(frapy_select): Add methods.
(frapy_read_var): Add symbol branch.
* Makefile.in (SUBDIR_PYTHON_OBS): Add py-symbol, py-symtab,
py-block.
(SUBDIR_PYTHON_SRCS): Likewise.
(py-symbol.o): New rule.
(py-symtab.o): Likewise.
(py-block.o): Likewise.
* python/py-symbol.c: New file.
* python/py-symtab.c: Likewise.
* python/py-block.c: Likewise.
2010-02-24 Phil Muldoon <pmuldoon@redhat.com>
* Makefile.in: Add py-block and py-symbol.
* gdb.python/py-symbol.exp: New File.
* gdb.python/py-symtab.exp: New File.
* gdb.python/py-block.exp: New File.
* gdb.python/py-symbol.c: New File.
* gdb.python/py-block.c: New File.
2010-02-24 Phil Muldoon <pmuldoon@redhat.com>
* gdb.texinfo (Frames In Python): Add block, find_sal, function
and select method descriptions.
(Python API): Add Blocks In Python, Symbols in Python and Symbol
Tables in Python to menu.
(Blocks In Python): New node.
(Symbols In Python): New node.
(Symbol Tables in Python): New node.
2010-02-24 21:18:28 +00:00
|
|
|
EXECUTABLES = py-type py-value py-prettyprint py-template py-block \
|
2011-02-22 03:23:20 +00:00
|
|
|
py-symbol py-mi py-breakpoint py-inferior py-infthread \
|
|
|
|
py-shared python lib-types py-events py-evthreads py-frame \
|
2011-12-23 17:06:16 +00:00
|
|
|
py-mi py-pp-maint py-progspace py-section-script py-objfile \
|
2012-04-11 05:50:44 +00:00
|
|
|
py-finish-breakpoint py-finish-breakpoint2 py-value-cc py-explore \
|
2013-02-21 01:46:57 +00:00
|
|
|
py-explore-cc py-arch
|
2010-08-19 17:00:58 +00:00
|
|
|
|
2011-12-23 17:06:16 +00:00
|
|
|
MISCELLANEOUS = py-shared-sl.sl py-events-shlib.so py-events-shlib-nodebug.so
|
2008-10-19 19:59:31 +00:00
|
|
|
|
|
|
|
all info install-info dvi install uninstall installcheck check:
|
|
|
|
@echo "Nothing to be done for $@..."
|
|
|
|
|
|
|
|
clean mostlyclean:
|
|
|
|
-rm -f *~ *.o *.ci
|
2012-05-17 19:03:59 +00:00
|
|
|
-rm -f *.dwo *.dwp
|
2010-08-19 17:00:58 +00:00
|
|
|
-rm -f core $(EXECUTABLES) $(MISCELLANEOUS)
|
2008-10-19 19:59:31 +00:00
|
|
|
|
|
|
|
distclean maintainer-clean realclean: clean
|
2011-02-22 20:52:49 +00:00
|
|
|
-rm -f Makefile config.status config.log gdb.log gdb.sum
|