diff options
author | Mark Kettenis <kettenis@gnu.org> | 2001-07-21 20:16:44 +0000 |
---|---|---|
committer | Mark Kettenis <kettenis@gnu.org> | 2001-07-21 20:16:44 +0000 |
commit | 256304449f3723704990160e7fa4496c02b92b2f (patch) | |
tree | 92a73dc0965a660ee92bc7a178571ab063609216 /gdb/Makefile.in | |
parent | 39db33d6029554a081dd7a177ff2b821de089ba8 (diff) | |
download | gdb-256304449f3723704990160e7fa4496c02b92b2f.zip gdb-256304449f3723704990160e7fa4496c02b92b2f.tar.gz gdb-256304449f3723704990160e7fa4496c02b92b2f.tar.bz2 |
* i386bsd-nat.c: Do not include <sys/sysctl.h>.
(_initialize_i386bsd_nat) [KERN_PS_STRINGS]: Move FreeBSD-specific
code to ...
* i386fbsd-nat.c: ... here. New file.
* config/i386/fbsd.mh (NATDEPFILES): Add i386-fbsd.o.
* config/i386/nm-fbsd.h (CHILD_RESUME): Define.
* Makefile.in (ALLDEPFILES): Add i386fbsd-nat.c.
(i386fbsd-nat.o): Add dependencies.
Diffstat (limited to 'gdb/Makefile.in')
-rw-r--r-- | gdb/Makefile.in | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gdb/Makefile.in b/gdb/Makefile.in index 09c01d6..a90fab8 100644 --- a/gdb/Makefile.in +++ b/gdb/Makefile.in @@ -1151,7 +1151,7 @@ ALLDEPFILES = 29k-share/udi/udip2soc.c 29k-share/udi/udr.c \ hp-psymtab-read.c hp-symtab-read.c \ i386-tdep.c i386b-nat.c i386mach-nat.c i386v-nat.c i386-linux-nat.c \ i386aix-nat.c i386m3-nat.c i386v4-nat.c i386ly-tdep.c \ - i386bsd-nat.c i386bsd-tdep.c \ + i386bsd-nat.c i386bsd-tdep.c i386fbsd-nat.c \ i387-tdep.c \ i386-linux-tdep.c i386-nat.c \ i960-tdep.c \ @@ -1537,6 +1537,8 @@ i386bsd-tdep.o: i386bsd-tdep.c $(defs_h) $(frame_h) $(gdb_core_h) \ i386bsd-nat.o: i386bsd-nat.c $(defs_h) $(inferior_h) $(regcache_h) +i386fbsd-nat.o: i386fbsd-nat.c $(defs_h) $(inferior_h) $(regcache_h) + i386ly-nat.o: i386ly-nat.c $(defs_h) $(frame_h) $(inferior_h) target.h i386ly-tdep.o: i386ly-tdep.c $(defs_h) $(inferior_h) target.h $(gdbcore_h) \ |