aboutsummaryrefslogtreecommitdiff
path: root/gdb/Makefile.in
diff options
context:
space:
mode:
authorPhil Muldoon <pmuldoon@redhat.com>2013-11-11 19:49:45 +0000
committerPhil Muldoon <pmuldoon@redhat.com>2013-11-11 19:49:45 +0000
commitbc79de95db1005e1cefc18729eca9e9d5f771c91 (patch)
tree0c20455a1659da6d02e8f03df6123ec8278c208e /gdb/Makefile.in
parent67dc82bc511e35ef134952014b4deb2fdcf10676 (diff)
downloadgdb-bc79de95db1005e1cefc18729eca9e9d5f771c91.zip
gdb-bc79de95db1005e1cefc18729eca9e9d5f771c91.tar.gz
gdb-bc79de95db1005e1cefc18729eca9e9d5f771c91.tar.bz2
2013-11-11 Phil Muldoon <pmuldoon@redhat.com>
PR python/15629 * NEWS: Add linetable feature. * Makefile.in (SUBDIR_PYTHON_OBS): Add py-linetable entries. * python/py-linetable.c: New file. * python/py-symtab.c (stpy_get_linetable): New function. * python/python-internal.h (symtab_to_linetable_object): Declare. (gdbpy_initialize_linetable): Ditto. * python/python.c (_initialize_python): Call gdbpy_initialize_linetable. 2013-11-11 Phil Muldoon <pmuldoon@redhat.com> * gdb.python/py-linetable.S: New file. * gdb.python/py-linetable.c: New file. * gdb.python/py-linetable.exp: New file. 2013-11-11 Phil Muldoon <pmuldoon@redhat.com> * gdb.texinfo (Symbol Tables In Python): Add linetable method entry. (Line Tables In Python): New node.
Diffstat (limited to 'gdb/Makefile.in')
-rw-r--r--gdb/Makefile.in6
1 files changed, 6 insertions, 0 deletions
diff --git a/gdb/Makefile.in b/gdb/Makefile.in
index 011b1aa..975edbf 100644
--- a/gdb/Makefile.in
+++ b/gdb/Makefile.in
@@ -299,6 +299,7 @@ SUBDIR_PYTHON_OBS = \
py-inferior.o \
py-infthread.o \
py-lazy-string.o \
+ py-linetable.o \
py-newobjfileevent.o \
py-objfile.o \
py-param.o \
@@ -334,6 +335,7 @@ SUBDIR_PYTHON_SRCS = \
python/py-inferior.c \
python/py-infthread.c \
python/py-lazy-string.c \
+ python/py-linetable.c \
python/py-newobjfileevent.c \
python/py-objfile.c \
python/py-param.c \
@@ -2227,6 +2229,10 @@ py-lazy-string.o: $(srcdir)/python/py-lazy-string.c
$(COMPILE) $(PYTHON_CFLAGS) $(srcdir)/python/py-lazy-string.c
$(POSTCOMPILE)
+py-linetable.o: $(srcdir)/python/py-linetable.c
+ $(COMPILE) $(PYTHON_CFLAGS) $(srcdir)/python/py-linetable.c
+ $(POSTCOMPILE)
+
py-newobjfileevent.o: $(srcdir)/python/py-newobjfileevent.c
$(COMPILE) $(PYTHON_CFLAGS) $(srcdir)/python/py-newobjfileevent.c
$(POSTCOMPILE)