diff options
author | Fred Fish <fnf@specifix.com> | 1997-06-13 14:51:32 +0000 |
---|---|---|
committer | Fred Fish <fnf@specifix.com> | 1997-06-13 14:51:32 +0000 |
commit | 56e327b302eee034d0b5c069163023e4cd81b0b7 (patch) | |
tree | 590bf7971768931f17ba5d883ee96b243ae742be /gdb/Makefile.in | |
parent | adc03ece6288d971ea4eaab90d00abef5ef49cb7 (diff) | |
download | gdb-56e327b302eee034d0b5c069163023e4cd81b0b7.zip gdb-56e327b302eee034d0b5c069163023e4cd81b0b7.tar.gz gdb-56e327b302eee034d0b5c069163023e4cd81b0b7.tar.bz2 |
* defs.h (perror_with_name): Is a NORETURN function.
* utils.c (perror_with_name): Is a NORETURN function.
(error): Is NORETURN independently of ANSI_PROTOTYPES.
* symtab.c (fixup_symbol_section): Remove prototype.
* symtab.h: (fixup_symbol_section): Add prototype.
* m32r-rom.c (report_transfer_performance): Add prototype.
* sparclet-rom.c: Ditto.
* dsrec.c: Ditto.
* c-exp.y (parse_number): Cast args to float* or double* as
appropriate for conversion format.
* java-exp.y (parse_number): Ditto.
* Makefile.in (c-exp.tab.c): Remove #line lines that refer
to nonexistant y.tab.c file.
(java-exp.tab.c): Ditto.
(f-exp.tab.c): Ditto.
(m2-exp.tab.c): Ditto.
start-sanitize-gdbtk
* gdbtk.c (gdbtk_init): Make truth value test explicit.
Remove unused static variable "Gdbtk_Library".
end-sanitize-gdbtk
Diffstat (limited to 'gdb/Makefile.in')
-rw-r--r-- | gdb/Makefile.in | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/gdb/Makefile.in b/gdb/Makefile.in index 3160bb5..9c38e44 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -130,6 +130,8 @@ SIM = #start-sanitize-gdbtk # Where is the TCL library? Typically in ../tcl. LIB_INSTALL_DIR = $(libdir) +# This variable is needed when doing dynamic linking. +LIB_RUNTIME_DIR = $(libdir) TCL = @TCL_LD_SEARCH_FLAGS@ @TCL_BUILD_LIB_SPEC@ TCL_CFLAGS = @TCLHDIR@ @@ -821,6 +823,7 @@ c-exp.tab.c: c-exp.y -e '/include.*malloc.h/d' \ -e 's/malloc/xmalloc/g' \ -e 's/realloc/xrealloc/g' \ + -e '/^#line.*y.tab.c/d' \ < y.tab.c > c-exp.new -rm y.tab.c mv c-exp.new ./c-exp.tab.c @@ -834,6 +837,7 @@ java-exp.tab.c: java-exp.y -e '/include.*malloc.h/d' \ -e 's/malloc/xmalloc/g' \ -e 's/realloc/xrealloc/g' \ + -e '/^#line.*y.tab.c/d' \ < y.tab.c > java-exp.new -rm y.tab.c mv java-exp.new ./java-exp.tab.c @@ -847,6 +851,7 @@ f-exp.tab.c: f-exp.y c-exp.tab.c -e '/include.*malloc.h/d' \ -e 's/malloc/xmalloc/g' \ -e 's/realloc/xrealloc/g' \ + -e '/^#line.*y.tab.c/d' \ < y.tab.c > f-exp.new -rm y.tab.c mv f-exp.new ./f-exp.tab.c @@ -864,6 +869,7 @@ m2-exp.tab.c: m2-exp.y -e '/include.*malloc.h/d' \ -e 's/malloc/xmalloc/g' \ -e 's/realloc/xrealloc/g' \ + -e '/^#line.*y.tab.c/d' \ < y.tab.c > m2-exp.new -rm y.tab.c mv m2-exp.new ./m2-exp.tab.c @@ -1164,6 +1170,9 @@ gdbtypes.o: gdbtypes.c $(bfd_h) complaints.h $(defs_h) $(expression_h) \ $(gdbtypes_h) language.h objfiles.h symfile.h $(symtab_h) target.h \ $(value_h) gdb_string.h +gnu-nat.o: process_reply_S.h exc_request_S.h notify_S.h msg_reply_S.h \ + exc_request_U.h msg_U.h gnu-nat.h + go32-xdep.o: go32-xdep.c gould-tdep.o: gould-tdep.c $(OP_INCLUDE)/np1.h $(defs_h) $(frame_h) \ @@ -1185,6 +1194,8 @@ hppa-tdep.o: hppa-tdep.c $(wait_h) $(defs_h) $(gdbcmd_h) $(gdbcore_h) \ hppab-nat.o: hppab-nat.c $(bfd_h) $(defs_h) $(inferior_h) target.h hppah-nat.o: hppah-nat.c $(bfd_h) $(defs_h) $(inferior_h) target.h +i386gnu-nat.o: gnu-nat.h + i386-tdep.o: i386-tdep.c $(defs_h) $(gdbcore_h) $(inferior_h) target.h \ gdb_string.h |