Makefile revision 129477
11558Srgrimes#	@(#)Makefile	8.5 (Berkeley) 3/31/94
250476Speter# $FreeBSD: head/sbin/Makefile 129477 2004-05-20 10:37:13Z pjd $
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 \
34124587Sru	${_gpt} \
3569800Stomsoft	growfs \
3638653Sgpalmer	ifconfig \
3738653Sgpalmer	init \
38124587Sru	${_ip6fw} \
39124587Sru	${_ipf} \
40124587Sru	${_ipfs} \
41124587Sru	${_ipfstat} \
4238653Sgpalmer	ipfw \
43124587Sru	${_ipmon} \
44124587Sru	${_ipnat} \
4578978Sroam	kldconfig \
4638653Sgpalmer	kldload \
4738653Sgpalmer	kldstat \
4838653Sgpalmer	kldunload \
4938843Sjb	ldconfig \
50124587Sru	${_mca} \
5138653Sgpalmer	md5 \
5270450Sphk	mdconfig \
5378448Sdd	mdmfs \
5438653Sgpalmer	mknod \
55111716Smckusick	mksnap_ffs \
5638653Sgpalmer	mount \
5738653Sgpalmer	mount_cd9660 \
5838653Sgpalmer	mount_ext2fs \
5977577Sru	mount_msdosfs \
6038653Sgpalmer	mount_nfs \
61124197Salfred	mount_nfs4 \
6243557Ssemenu	mount_ntfs \
6377042Sru	mount_nullfs \
6438653Sgpalmer	mount_std \
6594658Sscottl	mount_udf \
6677042Sru	mount_umapfs \
6777042Sru	mount_unionfs \
6844690Sbrian	natd \
6938653Sgpalmer	newfs \
7038653Sgpalmer	newfs_msdos \
71100636Speter	nfsiod \
7238653Sgpalmer	nos-tun \
73126756Smlaier	${_pfctl} \
74126756Smlaier	${_pflogd} \
7538653Sgpalmer	ping \
76124587Sru	${_ping6} \
7738653Sgpalmer	quotacheck \
7898187Sgordon	rcorder \
7938653Sgpalmer	reboot \
8038653Sgpalmer	restore \
8138653Sgpalmer	route \
8238653Sgpalmer	routed \
8355163Sshin	rtsol \
8493651Smarcel	savecore \
85124587Sru	${_sconfig} \
8638653Sgpalmer	shutdown \
8738653Sgpalmer	slattach \
8841061Sbde	spppcontrol \
8938653Sgpalmer	startslip \
90116473Sphk	sunlabel \
9185469Sru	swapon \
9246878Sobrien	sysctl \
9338653Sgpalmer	tunefs \
94124587Sru	umount \
95124587Sru	${_vinum}
9610855Sjoerg
97119506Sphk.if !defined(NOATM)
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
123119553Sphk.if !defined(NO_VINUM)
124124587Sru_vinum=		vinum
125119553Sphk.endif
126119553Sphk
12785954Speter.if ${MACHINE_ARCH} == "i386"
128124587Sru.if ${MACHINE} == "i386"
129124587Sru_fdisk=		fdisk
130124587Sru.elif ${MACHINE} == "pc98"
131124587Sru_fdisk_pc98=	fdisk_pc98
13244317Sjkh.endif
133124587Sru_sconfig=	sconfig
13486032Speter.endif
13544317Sjkh
136124587Sru.if ${MACHINE_ARCH} == "amd64"
137124587Sru_fdisk=		fdisk
13838458Sjb.endif
13938458Sjb
140124587Sru.if ${MACHINE_ARCH} == "ia64"
141124587Sru_fdisk=		fdisk
142124587Sru_mca=		mca
143115110Speter.endif
144115110Speter
145128802Smarcel.if ${MACHINE_ARCH} != "sparc64"
146128802Smarcel_gpt=		gpt
147128802Smarcel.endif
148128802Smarcel
1491558Srgrimes.include <bsd.subdir.mk>
150