freebsd-skq/gnu/usr.bin/Makefile
obrien 8080c6393b GCC and Gperf do not work on ia64 or sparc64 yet.
Also do not try to compile Groff if NO_CXX is set.
2002-04-08 20:38:56 +00:00

29 lines
489 B
Makefile

# $FreeBSD$
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
.endif
.if defined(WANT_AOUT)
.if ${MACHINE_ARCH} == "i386"
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
.include <bsd.subdir.mk>