diff options
author | obrien <obrien@FreeBSD.org> | 2002-04-08 20:38:56 +0000 |
---|---|---|
committer | obrien <obrien@FreeBSD.org> | 2002-04-08 20:38:56 +0000 |
commit | 8080c6393bac94601bc2f33d78aa2ca7226a128e (patch) | |
tree | 0f205992b00aaa681f21d3e2ad61dc09303f265a /gnu/usr.bin/Makefile | |
parent | acb8992dc365ee9f45e997e701eeb6dc8e35d0e8 (diff) | |
download | FreeBSD-src-8080c6393bac94601bc2f33d78aa2ca7226a128e.zip FreeBSD-src-8080c6393bac94601bc2f33d78aa2ca7226a128e.tar.gz |
GCC and Gperf do not work on ia64 or sparc64 yet.
Also do not try to compile Groff if NO_CXX is set.
Diffstat (limited to 'gnu/usr.bin/Makefile')
-rw-r--r-- | gnu/usr.bin/Makefile | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/gnu/usr.bin/Makefile b/gnu/usr.bin/Makefile index 4e07237..ee5ea28 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 |