summaryrefslogtreecommitdiffstats
path: root/gnu/usr.bin/Makefile
diff options
context:
space:
mode:
authorphk <phk@FreeBSD.org>2005-08-05 16:08:53 +0000
committerphk <phk@FreeBSD.org>2005-08-05 16:08:53 +0000
commite3482153d0ac3efc434204558aca72db43994e87 (patch)
tree00c2aff87c8ccbe596bb2dbcb3482f56d079c432 /gnu/usr.bin/Makefile
parente5975d2918fa14b2ceb15153b915b3ede61a6356 (diff)
downloadFreeBSD-src-e3482153d0ac3efc434204558aca72db43994e87.zip
FreeBSD-src-e3482153d0ac3efc434204558aca72db43994e87.tar.gz
let NO_MAN control man
let NO_TOOLCHAIN control rcs let NO_INFO control texinfo
Diffstat (limited to 'gnu/usr.bin/Makefile')
-rw-r--r--gnu/usr.bin/Makefile15
1 files changed, 12 insertions, 3 deletions
diff --git a/gnu/usr.bin/Makefile b/gnu/usr.bin/Makefile
index 799160b..12c7071 100644
--- a/gnu/usr.bin/Makefile
+++ b/gnu/usr.bin/Makefile
@@ -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
OpenPOWER on IntegriCloud