diff options
author | Pedro Alves <palves@redhat.com> | 2008-05-01 23:09:14 +0000 |
---|---|---|
committer | Pedro Alves <palves@redhat.com> | 2008-05-01 23:09:14 +0000 |
commit | a15c5c831a57ef5522bff58851aa211df9337d2a (patch) | |
tree | 464465432fd509ded0d1b7c553ae1f493e3950f0 /gdb/Makefile.in | |
parent | 728c8f58672c8ae8235ad96068d01116b6e8157e (diff) | |
download | gdb-a15c5c831a57ef5522bff58851aa211df9337d2a.zip gdb-a15c5c831a57ef5522bff58851aa211df9337d2a.tar.gz gdb-a15c5c831a57ef5522bff58851aa211df9337d2a.tar.bz2 |
* configure.tgt: Add i[34567]86-*-dicos* and x86_64-*-dicos*.
(i[34567]86-*-dicos*, x86_64-*-dicos*):
Set gdb_osabi to GDB_OSABI_DICOS.
* defs.h (enum gdb_osabi): Add GDB_OSABI_DICOS.
* osabi.c (gdb_osabi_name): Add "DICOS".
* i386-dicos-tdep.c: New file.
* Makefile.in (ALL_TARGET_OBS): Add i386-dicos-tdep.o.
(ALLDEPFILES): Add i386-dicos-tdep.c.
(i386-dicos-tdep.o): New rule.
Diffstat (limited to 'gdb/Makefile.in')
-rw-r--r-- | gdb/Makefile.in | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/gdb/Makefile.in b/gdb/Makefile.in index a98351c..2000a0a 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -464,6 +464,7 @@ ALL_TARGET_OBS = \ i386bsd-tdep.o i386-cygwin-tdep.o i386fbsd-tdep.o i386gnu-tdep.o \ i386-linux-tdep.o i386nbsd-tdep.o i386-nto-tdep.o i386obsd-tdep.o \ i386-sol2-tdep.o i386-tdep.o i387-tdep.o \ + i386-dicos-tdep.o \ iq2000-tdep.o \ m32c-tdep.o \ m32r-linux-tdep.o m32r-tdep.o \ @@ -1572,6 +1573,7 @@ ALLDEPFILES = \ i386bsd-nat.c i386bsd-tdep.c i386fbsd-nat.c i386fbsd-tdep.c \ i386nbsd-nat.c i386nbsd-tdep.c i386obsd-nat.c i386obsd-tdep.c \ i387-tdep.c \ + i386-dicos-tdep.c \ i386-linux-tdep.c i386-nat.c \ i386-sol2-nat.c i386-sol2-tdep.c \ i386gnu-nat.c i386gnu-tdep.c \ @@ -2235,6 +2237,8 @@ i386bsd-tdep.o: i386bsd-tdep.c $(defs_h) $(arch_utils_h) $(frame_h) \ i386-cygwin-tdep.o: i386-cygwin-tdep.c $(defs_h) $(osabi_h) $(gdb_string_h) \ $(i386_tdep_h) $(regset_h) $(gdb_obstack_h) $(xml_support_h) \ $(gdbcore_h) $(solib_h) $(solib_target_h) $(i386_cygwin_tdep_h) +i386-dicos-tdep.o: i386-dicos-tdep.c $(defs_h) $(osabi_h) $(gdb_string_h) \ + $(solib_h) $(solib_target_h) i386fbsd-nat.o: i386fbsd-nat.c $(defs_h) $(inferior_h) $(regcache_h) \ $(target_h) $(fbsd_nat_h) $(i386_tdep_h) $(i386bsd_nat_h) \ $(bsd_kvm_h) |