diff options
author | Edith Epstein <eepstein@cygnus> | 1998-12-08 20:41:19 +0000 |
---|---|---|
committer | Edith Epstein <eepstein@cygnus> | 1998-12-08 20:41:19 +0000 |
commit | 1994dc7cfca6b07c3cb5fa80a18ad36f76de95f9 (patch) | |
tree | 0825584babe92aa087c25bdcb3500d9f585a94fb /gdb/Makefile.in | |
parent | 9f3ab15addd7909abb6b28138c54b80a5bab6e82 (diff) | |
download | gdb-1994dc7cfca6b07c3cb5fa80a18ad36f76de95f9.zip gdb-1994dc7cfca6b07c3cb5fa80a18ad36f76de95f9.tar.gz gdb-1994dc7cfca6b07c3cb5fa80a18ad36f76de95f9.tar.bz2 |
Tue Dec 8 15:09:44 1998 Edith Epstein <eepstein@sophia.cygnus.com>
* config/m68k/tm-m68k.h (NUM_FREGS): m68k-linux patch.
Added NUM_FREGS macro.
* config/m68k/xm-linux.h: m68k-linux patch. New file.
* config/m68k/tm-linux.h: m68k-linux patch. New file.
* config/m68k/nm-linux.h: m68k-linux patch. New file.
* config/m68k/linux.mt: m68k-linux patch. New file.
* config/m68k/linux.mh: m68k-linux patch. New file.
* gdbserver/low-linux.c: m68k-linux patch. Added an ifdef
that checks the value of __GLIBC to decide whether or
not to include sys/reg.h.
* m68klinux-nat.c: m68k-linux patch. New file. Note
both m68k-tdep.c and m68klinux-nat.c contain definitions
for supply_gregset and supply_fpregset. The definitions
in m68k-tdep.c are valid is USE_PROC_FS is defined. Otherwise,
the definitions in m68klinux-nat.c will be used. This is a
bit of a hack. The supply_* routines do not belong in
*_tdep.c files. But, there are several lynx ports that currently
depend on these definitions.
* configure.tgt: m68k-linux patch. Added m68*-*-linux*
gdb_target.
* configure.host: m68k-linux patch. Added m68*-*-linux*
gdb_host.
* Makefile.in: m68k-linux patch. Added compile line for
m68klinux-nat.o
Diffstat (limited to 'gdb/Makefile.in')
-rw-r--r-- | gdb/Makefile.in | 14 |
1 files changed, 12 insertions, 2 deletions
diff --git a/gdb/Makefile.in b/gdb/Makefile.in index 180db63..10f3f59 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -54,7 +54,6 @@ INSTALL_DATA = @INSTALL_DATA@ AR = @AR@ AR_FLAGS = qv RANLIB = @RANLIB@ -AWK = @AWK@ DLLTOOL = @DLLTOOL@ WINDRES = @WINDRES@ @@ -278,6 +277,11 @@ SIM_OBS = ANNOTATE_OBS = annotate.o +# start-sanitize-carp +# Multi-arch enabled gdb targets +MACHINE_OBS = @MACHINE_OBS@ + +# end-sanitize-carp # Host and target-dependent makefile fragments come in here. @host_makefile_frag@ @target_makefile_frag@ @@ -501,6 +505,9 @@ POSSLIBS = gnu-regex.c gnu-regex.h # Makefile.in DEPFILES = $(TDEPFILES) $(XDEPFILES) $(SER_HARDWIRE) $(NATDEPFILES) \ + $(start-sanitize-carp) \ + $(MACHINE_OBS) \ + $(end-sanitize-carp) \ $(REMOTE_OBS) $(SIM_OBS) @CONFIG_OBS@ SOURCES = $(SFILES) $(ALLDEPFILES) $(YYFILES) @CONFIG_SRCS@ @@ -1313,6 +1320,9 @@ m68k-tdep.o: m68k-tdep.c $(defs_h) $(frame_h) $(symtab_h) $(value_h) \ m68kly-nat.o: m68kly-nat.c $(defs_h) $(frame_h) $(inferior_h) target.h +m68klinux-nat.o: m68klinux-nat.c $(defs_h) $(frame_h) $(inferior_h) \ + $(language_h) $(gdbcore_h) $(floatformat_h) target.h + m88k-nat.o: m88k-nat.c $(defs_h) $(gdbcore_h) $(inferior_h) m88k-tdep.o: m88k-tdep.c $(defs_h) $(gdbcore_h) $(inferior_h) @@ -1610,8 +1620,8 @@ tahoe-tdep.o: tahoe-tdep.c $(OP_INCLUDE)/tahoe.h $(defs_h) \ #start-sanitize-tic80 tic80-tdep.o: tic80-tdep.c $(defs_h) -#end-sanitize-tic80 +#end-sanitize-tic80 target.o: target.c $(bfd_h) $(defs_h) $(gdbcmd_h) $(inferior_h) \ objfiles.h symfile.h target.h gdb_string.h |