Makefile revision 124587
11558Srgrimes#	@(#)Makefile	8.5 (Berkeley) 3/31/94
250476Speter# $FreeBSD: head/sbin/Makefile 124587 2004-01-16 15:23:19Z 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 \
32124587Sru	${_gpt} \
3369800Stomsoft	growfs \
3438653Sgpalmer	ifconfig \
3538653Sgpalmer	init \
36124587Sru	${_ip6fw} \
37124587Sru	${_ipf} \
38124587Sru	${_ipfs} \
39124587Sru	${_ipfstat} \
4038653Sgpalmer	ipfw \
41124587Sru	${_ipmon} \
42124587Sru	${_ipnat} \
4378978Sroam	kldconfig \
4438653Sgpalmer	kldload \
4538653Sgpalmer	kldstat \
4638653Sgpalmer	kldunload \
4738843Sjb	ldconfig \
48124587Sru	${_mca} \
4938653Sgpalmer	md5 \
5070450Sphk	mdconfig \
5178448Sdd	mdmfs \
5238653Sgpalmer	mknod \
53111716Smckusick	mksnap_ffs \
5438653Sgpalmer	mount \
5538653Sgpalmer	mount_cd9660 \
5638653Sgpalmer	mount_ext2fs \
5777577Sru	mount_msdosfs \
5838653Sgpalmer	mount_nfs \
59124197Salfred	mount_nfs4 \
6043557Ssemenu	mount_ntfs \
6177042Sru	mount_nullfs \
6238653Sgpalmer	mount_std \
6394658Sscottl	mount_udf \
6477042Sru	mount_umapfs \
6577042Sru	mount_unionfs \
6644690Sbrian	natd \
6738653Sgpalmer	newfs \
6838653Sgpalmer	newfs_msdos \
69100636Speter	nfsiod \
7038653Sgpalmer	nologin \
7138653Sgpalmer	nos-tun \
7238653Sgpalmer	ping \
73124587Sru	${_ping6} \
7438653Sgpalmer	quotacheck \
75105762Sscottl	raidctl \
7698187Sgordon	rcorder \
7738653Sgpalmer	reboot \
7838653Sgpalmer	restore \
7938653Sgpalmer	route \
8038653Sgpalmer	routed \
8155163Sshin	rtsol \
8293651Smarcel	savecore \
83124587Sru	${_sconfig} \
8438653Sgpalmer	shutdown \
8538653Sgpalmer	slattach \
8641061Sbde	spppcontrol \
8738653Sgpalmer	startslip \
88116473Sphk	sunlabel \
8985469Sru	swapon \
9046878Sobrien	sysctl \
9138653Sgpalmer	tunefs \
92124587Sru	umount \
93124587Sru	${_vinum}
9410855Sjoerg
95119506Sphk.if !defined(NOATM)
96124587Sru_atm=		atm
97119506Sphk.endif
98119506Sphk
99111202Sobrien.if !defined(NO_CXX)
100124587Sru_devd=		devd
101111202Sobrien.endif
102111202Sobrien
10392868Sru.if !defined(NO_IPFILTER)
104124587Sru_ipf=		ipf
105124587Sru_ipfs=		ipfs
106124587Sru_ipfstat=		ipfstat
107124587Sru_ipmon=		ipmon
108124587Sru_ipnat=		ipnat
10992868Sru.endif
11092868Sru
111119506Sphk.if !defined(NOINET6)
112124587Sru_ip6fw=		ip6fw
113124587Sru_ping6=		ping6
114119506Sphk.endif
115119506Sphk
116119553Sphk.if !defined(NO_VINUM)
117124587Sru_vinum=		vinum
118119553Sphk.endif
119119553Sphk
12085954Speter.if ${MACHINE_ARCH} == "i386"
121124587Sru.if ${MACHINE} == "i386"
122124587Sru_fdisk=		fdisk
123124587Sru.elif ${MACHINE} == "pc98"
124124587Sru_fdisk_pc98=	fdisk_pc98
12544317Sjkh.endif
126124587Sru_sconfig=	sconfig
12786032Speter.endif
12844317Sjkh
129124587Sru.if ${MACHINE_ARCH} == "amd64"
130124587Sru_fdisk=		fdisk
131124587Sru_gpt=		gpt
13238458Sjb.endif
13338458Sjb
134124587Sru.if ${MACHINE_ARCH} == "ia64"
135124587Sru_fdisk=		fdisk
136124587Sru_gpt=		gpt
137124587Sru_mca=		mca
138115110Speter.endif
139115110Speter
1401558Srgrimes.include <bsd.subdir.mk>
141