diff options
author | Michael Meissner <gnu@the-meissners.org> | 1997-11-27 15:13:14 +0000 |
---|---|---|
committer | Michael Meissner <gnu@the-meissners.org> | 1997-11-27 15:13:14 +0000 |
commit | 8d21d88c08f948f9f805afb7e6ca0c4259bedebe (patch) | |
tree | 788c48e2951b20bb8021461d77bccf08c3aabd7d /gdb/Makefile.in | |
parent | b2b1c5da2e1bb2cd869a7e416df9dc35b9453d4f (diff) | |
download | gdb-8d21d88c08f948f9f805afb7e6ca0c4259bedebe.zip gdb-8d21d88c08f948f9f805afb7e6ca0c4259bedebe.tar.gz gdb-8d21d88c08f948f9f805afb7e6ca0c4259bedebe.tar.bz2 |
Add tracepoint.o to gdbtk builds
Diffstat (limited to 'gdb/Makefile.in')
-rw-r--r-- | gdb/Makefile.in | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/gdb/Makefile.in b/gdb/Makefile.in index dfabb72..c3a52a7 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -454,6 +454,7 @@ gdbcmd_h = gdbcmd.h $(command_h) defs_h = defs.h xm.h tm.h nm.h config.status config.h inferior_h = inferior.h $(breakpoint_h) +tracepoint_h = tracepoint.h # Header files that need to have srcdir added. Note that in the cases # where we use a macro like $(gdbcmd_h), things are carefully arranged @@ -1133,10 +1134,14 @@ fork-child.o: fork-child.c $(wait_h) $(defs_h) $(gdbcore_h) \ # start-sanitize-gdbtk gdbtk.o: gdbtk.c $(defs_h) $(symtab_h) $(inferior_h) $(command_h) \ - $(bfd_h) symfile.h objfiles.h target.h gdb_string.h + $(bfd_h) symfile.h objfiles.h target.h gdb_string.h $(tracepoint_h) $(CC) -c $(INTERNAL_CFLAGS) $(IDE_CFLAGS) $(ITCL_CFLAGS) $(TIX_CFLAGS) \ $(TCL_CFLAGS) $(TK_CFLAGS) $(X11_CFLAGS) \ $(srcdir)/gdbtk.c -DGDBTK_LIBRARY=\"$(datadir)/gdbtcl\" + +tracepoint.o: tracepoint.c $(defs_h) $(symtab_h) $(frame_h) $(tracepoint_h) \ + $(gdbtypes_h) $(expression_h) $(gdbcmd_h) $(value_h) target.h \ + language.h gdb_string.h $(readline_headers) # end-sanitize-gdbtk gdbtypes.o: gdbtypes.c $(bfd_h) complaints.h $(defs_h) $(expression_h) \ |