Makefile revision 139105
11558Srgrimes#	@(#)Makefile	8.5 (Berkeley) 3/31/94
250476Speter# $FreeBSD: head/sbin/Makefile 139105 2004-12-21 09:08:06Z ru $
31558Srgrimes
412481Speter# XXX MISSING:		icheck ncheck
51558Srgrimes
641061SbdeSUBDIR=	adjkerntz \
774448Ssos	atacontrol \
8124587Sru	${_atm} \
939271Sphk	badsect \
10114759Sphk	bsdlabel \
1139255Sgibbs	camcontrol \
1238653Sgpalmer	ccdconfig \
1338653Sgpalmer	clri \
1455980Speter	comcontrol \
1585380Sjlemon	conscontrol \
16124587Sru	${_devd} \
17100206Sdd	devfs \
1843859Sobrien	dhclient \
1938653Sgpalmer	dmesg \
2038653Sgpalmer	dump \
2138653Sgpalmer	dumpfs \
2238653Sgpalmer	dumpon \
23124587Sru	${_fdisk} \
24124587Sru	${_fdisk_pc98} \
25118919Srwatson	ffsinfo \
2638653Sgpalmer	fsck \
2779458Sobrien	fsck_ffs \
2879457Sobrien	fsck_msdosfs \
2938653Sgpalmer	fsdb \
3038653Sgpalmer	fsirand \
31105513Sphk	gbde \
32129477Spjd	geom \
33128892Spjd	ggate \
34136933Smarcel	gpt \
3569800Stomsoft	growfs \
36133270Sle	gvinum \
3738653Sgpalmer	ifconfig \
3838653Sgpalmer	init \
39124587Sru	${_ip6fw} \
40124587Sru	${_ipf} \
41124587Sru	${_ipfs} \
42124587Sru	${_ipfstat} \
4338653Sgpalmer	ipfw \
44124587Sru	${_ipmon} \
45124587Sru	${_ipnat} \
4678978Sroam	kldconfig \
4738653Sgpalmer	kldload \
4838653Sgpalmer	kldstat \
4938653Sgpalmer	kldunload \
5038843Sjb	ldconfig \
51124587Sru	${_mca} \
5238653Sgpalmer	md5 \
5370450Sphk	mdconfig \
5478448Sdd	mdmfs \
5538653Sgpalmer	mknod \
56111716Smckusick	mksnap_ffs \
5738653Sgpalmer	mount \
5838653Sgpalmer	mount_cd9660 \
5938653Sgpalmer	mount_ext2fs \
6077577Sru	mount_msdosfs \
6138653Sgpalmer	mount_nfs \
62124197Salfred	mount_nfs4 \
6343557Ssemenu	mount_ntfs \
6477042Sru	mount_nullfs \
6538653Sgpalmer	mount_std \
6694658Sscottl	mount_udf \
6777042Sru	mount_umapfs \
6877042Sru	mount_unionfs \
6944690Sbrian	natd \
7038653Sgpalmer	newfs \
7138653Sgpalmer	newfs_msdos \
72100636Speter	nfsiod \
7338653Sgpalmer	nos-tun \
74126756Smlaier	${_pfctl} \
75126756Smlaier	${_pflogd} \
7638653Sgpalmer	ping \
77124587Sru	${_ping6} \
7838653Sgpalmer	quotacheck \
7998187Sgordon	rcorder \
8038653Sgpalmer	reboot \
8138653Sgpalmer	restore \
8238653Sgpalmer	route \
8338653Sgpalmer	routed \
8455163Sshin	rtsol \
8593651Smarcel	savecore \
86124587Sru	${_sconfig} \
8738653Sgpalmer	shutdown \
8838653Sgpalmer	slattach \
8941061Sbde	spppcontrol \
9038653Sgpalmer	startslip \
91116473Sphk	sunlabel \
9285469Sru	swapon \
9346878Sobrien	sysctl \
9438653Sgpalmer	tunefs \
95124587Sru	umount \
9610855Sjoerg
97139105Sru.if !defined(NO_ATM)
98124587Sru_atm=		atm
99119506Sphk.endif
100119506Sphk
101111202Sobrien.if !defined(NO_CXX)
102124587Sru_devd=		devd
103111202Sobrien.endif
104111202Sobrien
10592868Sru.if !defined(NO_IPFILTER)
106124587Sru_ipf=		ipf
107124587Sru_ipfs=		ipfs
108124601Sru_ipfstat=	ipfstat
109124587Sru_ipmon=		ipmon
110124587Sru_ipnat=		ipnat
11192868Sru.endif
11292868Sru
113126756Smlaier.if !defined(NO_PF)
114126756Smlaier_pfctl=		pfctl
115126756Smlaier_pflogd=	pflogd
116126756Smlaier.endif
117126756Smlaier
118119506Sphk.if !defined(NOINET6)
119124587Sru_ip6fw=		ip6fw
120124587Sru_ping6=		ping6
121119506Sphk.endif
122119506Sphk
12385954Speter.if ${MACHINE_ARCH} == "i386"
124124587Sru.if ${MACHINE} == "i386"
125124587Sru_fdisk=		fdisk
126124587Sru.elif ${MACHINE} == "pc98"
127124587Sru_fdisk_pc98=	fdisk_pc98
12844317Sjkh.endif
129124587Sru_sconfig=	sconfig
13086032Speter.endif
13144317Sjkh
132124587Sru.if ${MACHINE_ARCH} == "amd64"
133124587Sru_fdisk=		fdisk
13438458Sjb.endif
13538458Sjb
136124587Sru.if ${MACHINE_ARCH} == "ia64"
137124587Sru_fdisk=		fdisk
138124587Sru_mca=		mca
139115110Speter.endif
140115110Speter
1411558Srgrimes.include <bsd.subdir.mk>
142