diff options
| author | nia <nia@NetBSD.org> | 2022-05-27 07:28:20 +0000 |
|---|---|---|
| committer | nia <nia@NetBSD.org> | 2022-05-27 07:28:20 +0000 |
| commit | aa9bc1445fdbfac0e78c33d2e7007cfc8d29d1b4 (patch) | |
| tree | f521b5c58c1b3eb79493018f0d64ad6159e59171 /libexec | |
| parent | 8725cfcecc30fe91e8eb8ebd71b72a5d687648f5 (diff) | |
mk: Add a MKLFS flag for excluding the log-structured filesystem userspace
tools from the build.
Diffstat (limited to 'libexec')
| -rw-r--r-- | libexec/Makefile | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/libexec/Makefile b/libexec/Makefile index 83364a0e0b6..6cbcacf4dd4 100644 --- a/libexec/Makefile +++ b/libexec/Makefile @@ -1,14 +1,18 @@ -# $NetBSD: Makefile,v 1.61 2012/02/07 19:13:31 joerg Exp $ +# $NetBSD: Makefile,v 1.62 2022/05/27 07:28:20 nia Exp $ # @(#)Makefile 8.1 (Berkeley) 6/4/93 .include <bsd.own.mk> SUBDIR= atrun \ comsat fingerd ftpd getty httpd identd ld.aout_so \ - ld.elf_so lfs_cleanerd mail.local makekey rexecd \ + ld.elf_so mail.local makekey rexecd \ rlogind rshd rpc.rquotad rpc.rstatd rpc.rusersd rpc.rwalld \ rpc.sprayd talkd telnetd tftpd utmp_update +.if ${MKLFS} != "no" +SUBDIR+= lfs_cleanerd +.endif + .if ${MKMAKEMANDB} == "no" SUBDIR+= getNAME makewhatis .endif |
