diff options
author | Jim Kingdon <jkingdon@engr.sgi.com> | 1994-03-19 18:49:50 +0000 |
---|---|---|
committer | Jim Kingdon <jkingdon@engr.sgi.com> | 1994-03-19 18:49:50 +0000 |
commit | 94d4b713731d53fac28864a85e1974aa34fe7c39 (patch) | |
tree | 72b4d5f61bc77345f73d427f16078eee19cb9cae /gdb/Makefile.in | |
parent | 1732fbd47ae938e02720801967b6dd9c3f489ba6 (diff) | |
download | gdb-94d4b713731d53fac28864a85e1974aa34fe7c39.zip gdb-94d4b713731d53fac28864a85e1974aa34fe7c39.tar.gz gdb-94d4b713731d53fac28864a85e1974aa34fe7c39.tar.bz2 |
* Makefile.in (TAGS): Use variables directly, rather than using
find, to locate TM_FILE, XM_FILE, and NAT_FILE. This is faster
and means that these filenames no longer need be unique across all
the config/* directories.
* configure.in: Put the config/*/ into TM_FILE, etc.
* m68k-stub.c (computeSignal): Return SIGFPE, not SIGURG, for chk
and trapv exceptions.
* target.h (struct section_table), objfiles.h (struct obj_section):
Change name of field sec_ptr to the_bfd_section. More mnemonic
and avoids the (sort of, for the ptx compiler) name clash with
the name of the typedef.
* exec.c, xcoffexec.c, sparc-tdep.c, rs6000-nat.c, osfsolib.c,
solib.c, irix5-nat.c, objfiles.c, remote.c: Change users.
* utils.c: Include readline.h.
* Makefile.in (utils.o): Add dependency.
* remote.c (getpkt): Add support for run-length encoding.
Diffstat (limited to 'gdb/Makefile.in')
-rw-r--r-- | gdb/Makefile.in | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/gdb/Makefile.in b/gdb/Makefile.in index b5effb9..535b984 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -495,7 +495,8 @@ gdb.z:gdb.1 # install-only is intended to address that need. install: all install-only install-only: - transformed_name=`echo gdb | sed '$(program_transform_name)'` ; \ + transformed_name=`t='$(program_transform_name)'; \ + echo gdb | sed -e "s/brokensed/brokensed/" $$t` ; \ if test "x$$transformed_name" = x; then \ transformed_name=gdb ; \ else \ @@ -629,9 +630,9 @@ kdb: $(NTSSTART) $(OBS) $(NTSOBS) $(ADD_DEPS) $(CDEPS) TAGS: $(TAGFILES_NO_SRCDIR) $(TAGFILES_WITH_SRCDIR) @echo Making TAGS - @etags `find $(srcdir)/config \( -name $(TM_FILE) \ - -o -name $(XM_FILE) \ - -o -name $(NAT_FILE) \) -print` \ + @etags $(srcdir)/$(TM_FILE) \ + $(srcdir)/$(XM_FILE) \ + $(srcdir)/$(NAT_FILE) \ `(for i in $(DEPFILES) $(TAGFILES_NO_SRCDIR); do \ echo $(srcdir)/$$i ; \ done ; for i in $(TAGFILES_WITH_SRCDIR); do \ @@ -1392,7 +1393,7 @@ remote-z8k.o: remote-z8k.c $(wait_h) $(srcdir)/../sim/z8k/sim.h \ $(defs_h) $(gdbcore_h) $(inferior_h) target.h terminal.h remote-utils.o: remote-utils.c $(defs_h) $(gdbcmd_h) $(gdbcore_h) \ - $(inferior_h) $(remote_utils_h) + $(inferior_h) $(remote_utils_h) remote.o: remote.c $(bfd_h) $(wait_h) $(defs_h) $(gdbcmd_h) \ $(inferior_h) $(remote_utils_h) symfile.h terminal.h @@ -1467,7 +1468,7 @@ ultra3-xdep.o: ultra3-xdep.c $(defs_h) $(gdbcore_h) $(inferior_h) umax-xdep.o: umax-xdep.c $(defs_h) $(gdbcore_h) $(inferior_h) utils.o: utils.c $(bfd_h) $(defs_h) $(expression_h) $(gdbcmd_h) \ - language.h signals.h target.h terminal.h + language.h signals.h target.h terminal.h $(readline_headers) valarith.o: valarith.c $(bfd_h) $(defs_h) $(expression_h) \ $(gdbtypes_h) language.h $(symtab_h) target.h $(value_h) |