diff options
author | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1998-03-29 22:18:10 +0000 |
---|---|---|
committer | Niklas Hallqvist <niklas@cvs.openbsd.org> | 1998-03-29 22:18:10 +0000 |
commit | e67d583556a72a00ae4703b79321b01cf0e166f9 (patch) | |
tree | 294574e30a9ca6c051c5660df5d5de62b6bf7d3a /gnu/usr.bin/Makefile | |
parent | 82d7b263d3ef037532ae14b08ba6e5d1297430e8 (diff) |
Adapt the newer of our GDB versions to a.out ports. The main part of this
commit comes from NetBSD. Also, the kernel debugging mode is a bit different
but you will notice when you type gdb -k because it documents the difference
Diffstat (limited to 'gnu/usr.bin/Makefile')
-rw-r--r-- | gnu/usr.bin/Makefile | 11 |
1 files changed, 5 insertions, 6 deletions
diff --git a/gnu/usr.bin/Makefile b/gnu/usr.bin/Makefile index 321a97fa5a6..c50930b48c1 100644 --- a/gnu/usr.bin/Makefile +++ b/gnu/usr.bin/Makefile @@ -1,15 +1,14 @@ -# $OpenBSD: Makefile,v 1.22 1998/03/11 21:42:18 maja Exp $ +# $OpenBSD: Makefile,v 1.23 1998/03/29 22:17:15 niklas Exp $ # $NetBSD: Makefile,v 1.35 1996/04/03 21:20:52 chuck Exp $ SUBDIR+= bc cvs dc deroff diff diff3 gcc grep groff SUBDIR+= gzip lynx perl rcs sdiff sendbug sudo -# some ports use binutils, some do not. -.if (${MACHINE_ARCH} == "alpha") || (${MACHINE_ARCH} == "mips") || \ - (${MACHINE_ARCH} == "powerpc") SUBDIR+= binutils -.else -SUBDIR+= gas gdb ld +# some ports use binutils gas and ld, most do not (yet). +.if (${MACHINE_ARCH} != "alpha") && (${MACHINE_ARCH} != "mips") && \ + (${MACHINE_ARCH} != "powerpc") +SUBDIR+= gas ld .endif # Do this last, so that it re-builds the info 'dir' file |