diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1995-12-14 03:43:23 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1995-12-14 03:43:23 +0000 |
commit | dbe663f3bcf2e6de61a425a272724ba95c623820 (patch) | |
tree | 840bcdcaecf8f9cdea0099656a0f92d59164a7db /gnu/usr.bin/Makefile | |
parent | 5f7d1fd49707aedcb8f7d4c564bb24e17082c54d (diff) |
update from netbsd; parallel make stuff
Diffstat (limited to 'gnu/usr.bin/Makefile')
-rw-r--r-- | gnu/usr.bin/Makefile | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/gnu/usr.bin/Makefile b/gnu/usr.bin/Makefile index 96c4dd66209..185ee261ebe 100644 --- a/gnu/usr.bin/Makefile +++ b/gnu/usr.bin/Makefile @@ -1,13 +1,19 @@ -# $NetBSD: Makefile,v 1.24 1995/09/27 12:46:07 cgd Exp $ +# $NetBSD: Makefile,v 1.27 1995/12/07 07:26:32 phil Exp $ SUBDIR+= bc cpio dc diff diff3 gawk grep groff SUBDIR+= gzip rcs sdiff send-pr sort tar # some ports don't use the tool chain in /usr/src -.if (${MACHINE_ARCH} != "alpha") && (${MACHINE_ARCH} != "mips") +.if (${MACHINE_ARCH} != "alpha") && (${MACHINE_ARCH} != "mips") && \ + (${MACHINE_ARCH} != "vax") && (${MACHINE_ARCH} != "ns32k") SUBDIR+= gas gcc2 gdb ld .endif +# ns32k and vax wants newer gcc +.if (${MACHINE_ARCH} == "ns32k") || (${MACHINE_ARCH} == "vax") +SUBDIR+= gas gcc gdb ld +.endif + # XXX alpha still needs the /usr/bin/cpp script. .if (${MACHINE_ARCH} == "alpha") afterinstall: |