From 8080c6393bac94601bc2f33d78aa2ca7226a128e Mon Sep 17 00:00:00 2001 From: obrien Date: Mon, 8 Apr 2002 20:38:56 +0000 Subject: [PATCH] GCC and Gperf do not work on ia64 or sparc64 yet. Also do not try to compile Groff if NO_CXX is set. --- gnu/usr.bin/Makefile | 12 ++++++++++-- 1 file changed, 10 insertions(+), 2 deletions(-) diff --git a/gnu/usr.bin/Makefile b/gnu/usr.bin/Makefile index 4e07237c568d..ee5ea283d0e7 100644 --- a/gnu/usr.bin/Makefile +++ b/gnu/usr.bin/Makefile @@ -1,7 +1,7 @@ # $FreeBSD$ -SUBDIR= awk bc binutils cc cpio dc dialog diff diff3 gperf \ - grep groff gzip man patch ptx rcs sdiff send-pr tar texinfo +SUBDIR= awk bc binutils cpio dc dialog diff diff3 \ + grep gzip man patch ptx rcs sdiff send-pr tar texinfo .if !defined(NO_CVS) SUBDIR+=cvs @@ -13,6 +13,14 @@ SUBDIR+=as ld .endif .endif +.if ${MACHINE_ARCH} != "ia64" && ${MACHINE_ARCH} != "sparc64" +SUBDIR+=cc gperf +.endif + +.if !defined(NO_CXX) +SUBDIR+=groff +.endif + .if !defined(NOPERL) && !defined(NO_PERL) && exists(${.CURDIR}/perl) SUBDIR+=perl .endif