xref: /netbsd-src/usr.sbin/Makefile (revision 179b12252ecaf3553d9c2b7458ce62b6a2203d0c)
1#	$NetBSD: Makefile,v 1.246 2010/08/22 18:56:23 rmind 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 bad144 bootp \
7	btattach btconfig btdevctl bthcid btpand catman \
8	chown chroot chrtbl cnwctl cpuctl crash dev_mkdb \
9	dhcp diskpart dumpfs dumplfs edquota eeprom \
10	envstat eshconfig etcupdate extattrctl fssconfig fusermount fwctl \
11	gpioctl grfconfig grfinfo gspa hdaudioctl hilinfo ifwatchd inetd \
12	installboot \
13	iopctl iostat ipwctl irdaattach isdn iteconfig iwictl\
14	kgmon lastlogin link lmcconfig lockstat lpr mailwrapper makefs \
15	map-mbone mdconfig memswitch mlxctl mmcformat mopd mountd moused \
16	mrinfo mrouted mscdlabel mtrace \
17	mtree ndbootd ndiscvt netgroup_mkdb nfsd ntp ofctl paxctl pcictl \
18	pppd psrset pstat pwd_mkdb postinstall powerd puffs quot quotacheck \
19	quotaon rarpd rbootd rdate \
20	repquota rmt rpc.bootparamd rpc.lockd rpc.pcnfsd \
21 	rpc.statd rpcbind rwhod sa screenblank sdpd services_mkdb sesd \
22	schedctl sliplogin sntp \
23	spray srtconfig sti sunlabel sup syslogd tadpolectl tcpdchk \
24	tcpdmatch tcpdump tcpdrop timed tpctl traceroute trpt unlink \
25	usbdevs user videomode vipw veriexecgen vnconfig wake wiconfig \
26	wlanctl \
27	wsconscfg wsfontload wsmoused wsmuxctl zdump zic
28
29.if (${MKKERBEROS} != "no")
30SUBDIR+= hprop kadmin kdc kstash ktutil iprop-log kdigest kimpersonate kcm
31.endif
32
33.if (${MKYP} != "no")
34SUBDIR+= rpc.yppasswdd ypbind yppoll ypserv ypset
35.endif
36
37.if ${TOOLCHAIN_MISSING} != "no"
38SUBDIR+= mdsetimage
39.endif
40
41.if (${MKINET6} != "no")
42SUBDIR+=faithd ifmcstat ndp rip6query rtsold
43.endif
44.if (${USE_INET6} != "no")
45SUBDIR+=mld6query route6d rtadvd traceroute6
46.endif
47
48# ATM PVC
49SUBDIR+=pvcsif pvctxctl
50
51.if (${MKCRYPTO} != "no")
52SUBDIR+= racoon racoonctl
53.endif
54
55# NPF
56.if (${MKNPF} != "no")
57SUBDIR+=npf
58.endif
59
60# IP Filter
61.if (${MKIPFILTER} != "no")
62SUBDIR+=ipf
63.endif
64
65# PF
66.if (${MKPF} != "no")
67SUBDIR+=pf
68.endif
69
70.include <bsd.subdir.mk>
71