diff options
author | Jim Blandy <jimb@codesourcery.com> | 2001-03-20 21:23:38 +0000 |
---|---|---|
committer | Jim Blandy <jimb@codesourcery.com> | 2001-03-20 21:23:38 +0000 |
commit | bea7bb93ffacb8d57e0fffbe0ed4cd7635af2fb6 (patch) | |
tree | 6d75c700bde7d6db32c98717d920926ee76db5d6 | |
parent | 27fca2d871b27e82e9e461bbad4fefdb45910e05 (diff) | |
download | gdb-bea7bb93ffacb8d57e0fffbe0ed4cd7635af2fb6.zip gdb-bea7bb93ffacb8d57e0fffbe0ed4cd7635af2fb6.tar.gz gdb-bea7bb93ffacb8d57e0fffbe0ed4cd7635af2fb6.tar.bz2 |
* Makefile.in: Clean up dependencies on ../include/demangle.h.
(demangle_h): New variable.
(jv-typeprint.o, jv-valprint.o, linespec.o): Use it.
-rw-r--r-- | gdb/ChangeLog | 6 | ||||
-rw-r--r-- | gdb/Makefile.in | 7 |
2 files changed, 10 insertions, 3 deletions
diff --git a/gdb/ChangeLog b/gdb/ChangeLog index 07bd6e8..88c6349 100644 --- a/gdb/ChangeLog +++ b/gdb/ChangeLog @@ -1,3 +1,9 @@ +2001-03-20 Jim Blandy <jimb@redhat.com> + + * Makefile.in: Clean up dependencies on ../include/demangle.h. + (demangle_h): New variable. + (jv-typeprint.o, jv-valprint.o, linespec.o): Use it. + 2001-03-20 Andrew Cagney <ac131313@redhat.com> * target.h (SOFTWARE_SINGLE_STEP_P): Add empty parameter list. diff --git a/gdb/Makefile.in b/gdb/Makefile.in index 3a925f6..0fa1874 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -553,6 +553,7 @@ floatformat_h = $(INCLUDE_DIR)/floatformat.h bfd_h = $(BFD_DIR)/bfd.h dis-asm_h = $(INCLUDE_DIR)/dis-asm.h remote-sim_h = $(INCLUDE_DIR)/remote-sim.h +demangle_h = $(INCLUDE_DIR)/demangle.h dcache_h = dcache.h remote_utils_h = $(dcache_h) serial.h target.h remote-utils.h $(remote-sim_h) @@ -1554,11 +1555,11 @@ jv-lang.o: jv-lang.c $(bfd_h) $(defs_h) $(symtab_h) $(gdbtypes_h) \ gdb_string.h $(value_h) c-lang.h jv-lang.h $(gdbcore_h) jv-typeprint.o: jv-typeprint.c $(bfd_h) $(defs_h) $(symtab_h) $(gdbtypes_h) \ - $(value_h) $(INCLUDE_DIR)/demangle.h jv-lang.h gdb_string.h \ + $(value_h) $(demangle_h) jv-lang.h gdb_string.h \ typeprint.h c-lang.h jv-valprint.o: jv-valprint.c $(bfd_h) $(defs_h) $(symtab_h) $(gdbtypes_h) \ - $(expression_h) $(value_h) $(INCLUDE_DIR)/demangle.h valprint.h \ + $(expression_h) $(value_h) $(demangle_h) valprint.h \ language.h jv-lang.h c-lang.h gdbcore.h annotate.h kod.o: kod.c $(defs_h) $(command_h) $(gdbcmd_h) target.h gdb_string.h kod.h @@ -1966,7 +1967,7 @@ symtab.o: symtab.c call-cmds.h $(defs_h) $(expression_h) $(frame_h) \ linespec.o: linespec.c linespec.h $(defs_h) $(frame_h) $(value_h) \ objfiles.h symfile.h completer.h $(symtab_h) \ - $(INCLUDE_DIR)/demangle.h command.h + $(demangle_h) command.h tic80-tdep.o: tic80-tdep.c $(defs_h) $(regcache_h) |