let NO_MAN control man

let NO_TOOLCHAIN control rcs
let NO_INFO control texinfo
This commit is contained in:
Poul-Henning Kamp 2005-08-05 16:08:53 +00:00
parent 3291b357d2
commit 093c6e1283
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=148740

View File

@ -14,13 +14,13 @@ SUBDIR= bc \
grep \
${_groff} \
gzip \
man \
${_man} \
patch \
rcs \
${_rcs} \
sdiff \
send-pr \
sort \
texinfo
${_texinfo}
.if ${MACHINE_ARCH} == "arm" || ${MACHINE_ARCH} == "powerpc"
NO_GDB= # not yet
@ -39,9 +39,18 @@ _groff= groff
_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