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