summaryrefslogtreecommitdiff
path: root/libexec
diff options
context:
space:
mode:
authornia <nia@NetBSD.org>2022-05-28 14:31:11 +0000
committernia <nia@NetBSD.org>2022-05-28 14:31:11 +0000
commit43e9c33a5dfc78d1f0c61dceb442d6ee026ecee5 (patch)
tree2b0842d52e0aea165fea9b4b74ed2ef0fbabc63d /libexec
parent9089f8b97a348be947a6c83467ce2a4d1f067847 (diff)
mk: Add MKFINGER, MKTALK flags for not building
talk, talkd, finger, fingerd.
Diffstat (limited to 'libexec')
-rw-r--r--libexec/Makefile14
1 files changed, 11 insertions, 3 deletions
diff --git a/libexec/Makefile b/libexec/Makefile
index 6cbcacf4dd4..47cce8b6a9d 100644
--- a/libexec/Makefile
+++ b/libexec/Makefile
@@ -1,13 +1,17 @@
-# $NetBSD: Makefile,v 1.62 2022/05/27 07:28:20 nia Exp $
+# $NetBSD: Makefile,v 1.63 2022/05/28 14:31:11 nia Exp $
# @(#)Makefile 8.1 (Berkeley) 6/4/93
.include <bsd.own.mk>
SUBDIR= atrun \
- comsat fingerd ftpd getty httpd identd ld.aout_so \
+ comsat ftpd getty httpd identd ld.aout_so \
ld.elf_so mail.local makekey rexecd \
rlogind rshd rpc.rquotad rpc.rstatd rpc.rusersd rpc.rwalld \
- rpc.sprayd talkd telnetd tftpd utmp_update
+ rpc.sprayd telnetd tftpd utmp_update
+
+.if ${MKFINGER} != "no"
+SUBDIR+= fingerd
+.endif
.if ${MKLFS} != "no"
SUBDIR+= lfs_cleanerd
@@ -17,4 +21,8 @@ SUBDIR+= lfs_cleanerd
SUBDIR+= getNAME makewhatis
.endif
+.if ${MKTALK} != "no"
+SUBDIR+= talkd
+.endif
+
.include <bsd.subdir.mk>