1
0
mirror of https://git.FreeBSD.org/src.git synced 2025-01-25 16:13:17 +00:00
freebsd/gnu/usr.bin/Makefile
Poul-Henning Kamp 093c6e1283 let NO_MAN control man
let NO_TOOLCHAIN control rcs
let NO_INFO control texinfo
2005-08-05 16:08:53 +00:00

60 lines
714 B
Makefile

# $FreeBSD$
SUBDIR= bc \
${_binutils} \
${_cc} \
cpio \
${_cvs} \
dc \
dialog \
diff \
diff3 \
${_gdb} \
${_gperf} \
grep \
${_groff} \
gzip \
${_man} \
patch \
${_rcs} \
sdiff \
send-pr \
sort \
${_texinfo}
.if ${MACHINE_ARCH} == "arm" || ${MACHINE_ARCH} == "powerpc"
NO_GDB= # not yet
.endif
.if !defined(NO_CXX)
.if ${MACHINE_ARCH} != "powerpc"
_gperf= gperf
.endif
.if !defined(NO_GROFF)
_groff= groff
.endif
.endif
.if !defined(NO_CVS)
_cvs= cvs
.endif
.if !defined(NO_MAN)
_man= man
.endif
.if !defined(NO_INFO)
_texinfo= texinfo
.endif
.if !defined(NO_TOOLCHAIN)
_binutils= binutils
_cc= cc
_rcs= rcs
.if !defined(NO_GDB)
_gdb= gdb
.endif
.endif
.include <bsd.subdir.mk>