GCC and Gperf do not work on ia64 or sparc64 yet.

Also do not try to compile Groff if NO_CXX is set.
This commit is contained in:
David E. O'Brien 2002-04-08 20:38:56 +00:00
parent 28def05c25
commit 9dcb449809

View File

@ -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