diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-07-16 07:47:27 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1996-07-16 07:47:27 +0000 |
commit | 6a6084f5c2dd73b6d7a51f3bde13905227382910 (patch) | |
tree | d335155b6a048e3aa0a4762ecb8b7f6560490bc3 | |
parent | 72c7a95f808a0ca3f9ae2ef3604ac6f9dd40fb30 (diff) |
alpha/mips == binutils; others == gas/ld
-rw-r--r-- | gnu/usr.bin/Makefile | 17 |
1 files changed, 6 insertions, 11 deletions
diff --git a/gnu/usr.bin/Makefile b/gnu/usr.bin/Makefile index 2f3ebfb339e..7326b6f93d1 100644 --- a/gnu/usr.bin/Makefile +++ b/gnu/usr.bin/Makefile @@ -1,19 +1,14 @@ -# $OpenBSD: Makefile,v 1.11 1996/07/16 07:39:16 pefo Exp $ +# $OpenBSD: Makefile,v 1.12 1996/07/16 07:47:26 deraadt Exp $ # $NetBSD: Makefile,v 1.35 1996/04/03 21:20:52 chuck Exp $ -SUBDIR+= bc cpio cvs dc diff diff3 grep groff +SUBDIR+= bc cpio cvs dc diff diff3 gcc grep groff SUBDIR+= gzip rcs sdiff sendbug sort texinfo -# some ports don't use the tool chain in /usr/src -.if (${MACHINE_ARCH} != "alpha") && (${MACHINE_ARCH} != "mips") -SUBDIR+= gas gdb ld -.endif -.if ${MACHINE_ARCH} != "alpha" -SUBDIR+= gcc -.endif -# MIPS uses binutils for ELF support. -.if ${MACHINE_ARCH} == "mips" +# some ports use binutils, some do not. +.if (${MACHINE_ARCH} == "alpha") || (${MACHINE_ARCH} == "mips") SUBDIR+= binutils +.else +SUBDIR+= gas gdb ld .endif .include <bsd.subdir.mk> |