xref: /netbsd/usr.sbin/Makefile (revision aa9bc144)
1#	$NetBSD: Makefile,v 1.289 2022/05/27 07:28:21 nia Exp $
2#	from: @(#)Makefile	5.20 (Berkeley) 6/12/93
3
4.include <bsd.own.mk>
5
6SUBDIR=	ac accton acpitools altq apm apmd arp autofs \
7	bad144 bootp bta2dpd btattach btconfig btdevctl bthcid btpand catman \
8	chroot cnwctl cpuctl crash \
9	dev_mkdb diskpart dumpfs \
10	edquota eeprom envstat etcupdate extattrctl \
11	flashctl fssconfig fstyp fusermount fwctl \
12	gpioctl grfconfig gspa \
13	hdaudioctl \
14	i2cscan ifwatchd inetd installboot intrctl iopctl iostat ipwctl irdaattach \
15	isibootd iteconfig iwictl \
16	kgmon \
17	lastlogin ldpd link lockstat lpr \
18	mailwrapper makefs mdconfig memswitch mlxctl mmcformat \
19	mopd mountd moused mscdlabel mtree \
20	ndbootd netgroup_mkdb nfsd \
21	ofctl \
22	paxctl pcictl perfused psrset pstat pwd_mkdb postinstall \
23	powerd puffs \
24	quot quotacheck quotaon quotarestore \
25	rarpd rbootd rdate repquota rmt rpc.bootparamd rpc.lockd \
26	rpc.pcnfsd rpc.statd rpcbind rwhod \
27	sa screenblank sdpd service services_mkdb sesd schedctl \
28	sliplogin spray \
29	srtconfig sti sunlabel sysinst syslogd \
30	tadpolectl tcpdchk tcpdmatch tcpdrop timed tpctl tprof traceroute trpt \
31	unlink usbdevs user \
32	videomode vipw veriexecgen vnconfig \
33	wakeonlan wg-keygen wg-userspace wgconfig wiconfig wlanctl \
34	wsconscfg wsfontload wsmoused wsmuxctl \
35	zdump zic
36
37.if ${MKLFS} != "no"
38SUBDIR+= dumplfs
39.endif
40
41.if ${MKMAKEMANDB} != "no"
42SUBDIR+= makemandb
43.endif
44
45.if ${MKMROUTING} != "no"
46SUBDIR+= map-mbone mrinfo mrouted mtrace
47.endif
48
49.if (${MKYP} != "no")
50SUBDIR+= rpc.yppasswdd ypbind yppoll ypserv ypset
51.endif
52
53.if ${TOOLCHAIN_MISSING} != "no"
54SUBDIR+= mdsetimage
55.endif
56
57.if (${MKINET6} != "no")
58SUBDIR+=faithd ifmcstat ip6addrctl ndp rip6query rtsold
59.endif
60.if (${USE_INET6} != "no")
61SUBDIR+=mld6query route6d rtadvd traceroute6
62.endif
63
64SUBDIR+= plainrsa-gen racoon racoonctl
65
66SUBDIR+= nvmmctl
67
68# NPF
69.if (${MKNPF} != "no")
70SUBDIR+=npf
71.endif
72
73# PF
74.if (${MKPF} != "no")
75SUBDIR+=pf
76.endif
77
78.include <bsd.subdir.mk>
79