summaryrefslogtreecommitdiffstats
path: root/usr.bin/Makefile
diff options
context:
space:
mode:
authorngie <ngie@FreeBSD.org>2015-03-01 22:03:52 +0000
committerngie <ngie@FreeBSD.org>2015-03-01 22:03:52 +0000
commitde8fb43ec92b1b420147d22f7a048a179f90fa76 (patch)
tree4fe8bb91688ede3457d83635c42d3820c205f22f /usr.bin/Makefile
parent9da1add17162140813ca1a79eb57724b0d2c3617 (diff)
downloadFreeBSD-src-de8fb43ec92b1b420147d22f7a048a179f90fa76.zip
FreeBSD-src-de8fb43ec92b1b420147d22f7a048a179f90fa76.tar.gz
MFC r278192:
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 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 d15f32a..785fdd6 100644
--- a/usr.bin/Makefile
+++ b/usr.bin/Makefile
@@ -47,12 +47,10 @@ SUBDIR= alias \
fetch \
file \
find \
- finger \
fmt \
fold \
fstat \
fsync \
- ftp \
gcore \
gencat \
getconf \
@@ -159,7 +157,6 @@ SUBDIR= alias \
tcopy \
tee \
${_tests} \
- tftp \
time \
tip \
top \
@@ -233,6 +230,14 @@ _clang= clang
SUBDIR+= ee
.endif
+.if ${MK_FINGER} != "no"
+SUBDIR+= finger
+.endif
+
+.if ${MK_FTP} != "no"
+SUBDIR+= ftp
+.endif
+
.if ${MK_GPL_DTC} != "yes"
SUBDIR+= dtc
.endif
@@ -353,6 +358,10 @@ SUBDIR+= colcrt
SUBDIR+= ul
.endif
+.if ${MK_TFTP} != "no"
+SUBDIR+= tftp
+.endif
+
.if ${MK_TOOLCHAIN} != "no"
SUBDIR+= ar
SUBDIR+= c89
OpenPOWER on IntegriCloud