summaryrefslogtreecommitdiffstats
path: root/usr.bin/Makefile
diff options
context:
space:
mode:
authorngie <ngie@FreeBSD.org>2015-02-04 10:19:32 +0000
committerngie <ngie@FreeBSD.org>2015-02-04 10:19:32 +0000
commit06520f16ddc1b2578445c56c8e6484021f46b872 (patch)
treefc108276275cac6fae4a218361a5cb55fb1ead87 /usr.bin/Makefile
parent7a68cf4e596dc6f95b785e75b92299a43a3d3399 (diff)
downloadFreeBSD-src-06520f16ddc1b2578445c56c8e6484021f46b872.zip
FreeBSD-src-06520f16ddc1b2578445c56c8e6484021f46b872.tar.gz
Add the following options to enable/disable several features in the base system
WITHOUT_BOOTPARAMD - bootparamd WITHOUT_BOOTPD - bootpd WITHOUT_FINGER - finger, fingerd WITHOUT_FTP - ftp, ftpd WITHOUT_INETD - inetd WITHOUT_RBOOTD - rbootd WITHOUT_TCP_WRAPPERS - tcpd, et al WITHOUT_TFTP - tftp, tftp-server WITHOUT_TIMED - timed MFC after: 2 weeks Sponsored by: EMC / Isilon Storage Division
Diffstat (limited to 'usr.bin/Makefile')
-rw-r--r--usr.bin/Makefile15
1 files changed, 12 insertions, 3 deletions
diff --git a/usr.bin/Makefile b/usr.bin/Makefile
index fbe87bd..70e1316 100644
--- a/usr.bin/Makefile
+++ b/usr.bin/Makefile
@@ -50,12 +50,10 @@ SUBDIR= ${_addr2line} \
fetch \
file \
find \
- finger \
fmt \
fold \
fstat \
fsync \
- ftp \
gcore \
gencat \
getconf \
@@ -166,7 +164,6 @@ SUBDIR= ${_addr2line} \
tcopy \
tee \
${_tests} \
- tftp \
time \
timeout \
tip \
@@ -249,10 +246,18 @@ _size= size
_strings= strings
.endif
+.if ${MK_FINGER} != "no"
+SUBDIR+= finger
+.endif
+
.if ${MK_FMAKE} != "no"
SUBDIR+= make
.endif
+.if ${MK_FTP} != "no"
+SUBDIR+= ftp
+.endif
+
.if ${MK_GPL_DTC} != "yes"
SUBDIR+= dtc
.endif
@@ -365,6 +370,10 @@ SUBDIR+= colcrt
SUBDIR+= ul
.endif
+.if ${MK_TFTP} != "no"
+SUBDIR+= tftp
+.endif
+
.if ${MK_TOOLCHAIN} != "no"
SUBDIR+= ar
SUBDIR+= c89
OpenPOWER on IntegriCloud