diff options
| author | nia <nia@NetBSD.org> | 2022-05-28 14:31:11 +0000 |
|---|---|---|
| committer | nia <nia@NetBSD.org> | 2022-05-28 14:31:11 +0000 |
| commit | 43e9c33a5dfc78d1f0c61dceb442d6ee026ecee5 (patch) | |
| tree | 2b0842d52e0aea165fea9b4b74ed2ef0fbabc63d /libexec | |
| parent | 9089f8b97a348be947a6c83467ce2a4d1f067847 (diff) | |
mk: Add MKFINGER, MKTALK flags for not building
talk, talkd, finger, fingerd.
Diffstat (limited to 'libexec')
| -rw-r--r-- | libexec/Makefile | 14 |
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> |
