Makefile revision 126756
11558Srgrimes#	@(#)Makefile	8.5 (Berkeley) 3/31/94
250476Speter# $FreeBSD: head/sbin/Makefile 126756 2004-03-08 22:03:29Z mlaier $
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 \
32126175Spjd	gconcat \
33124587Sru	${_gpt} \
3469800Stomsoft	growfs \
3538653Sgpalmer	ifconfig \
3638653Sgpalmer	init \
37124587Sru	${_ip6fw} \
38124587Sru	${_ipf} \
39124587Sru	${_ipfs} \
40124587Sru	${_ipfstat} \
4138653Sgpalmer	ipfw \
42124587Sru	${_ipmon} \
43124587Sru	${_ipnat} \
4478978Sroam	kldconfig \
4538653Sgpalmer	kldload \
4638653Sgpalmer	kldstat \
4738653Sgpalmer	kldunload \
4838843Sjb	ldconfig \
49124587Sru	${_mca} \
5038653Sgpalmer	md5 \
5170450Sphk	mdconfig \
5278448Sdd	mdmfs \
5338653Sgpalmer	mknod \
54111716Smckusick	mksnap_ffs \
5538653Sgpalmer	mount \
5638653Sgpalmer	mount_cd9660 \
5738653Sgpalmer	mount_ext2fs \
5877577Sru	mount_msdosfs \
5938653Sgpalmer	mount_nfs \
60124197Salfred	mount_nfs4 \
6143557Ssemenu	mount_ntfs \
6277042Sru	mount_nullfs \
6338653Sgpalmer	mount_std \
6494658Sscottl	mount_udf \
6577042Sru	mount_umapfs \
6677042Sru	mount_unionfs \
6744690Sbrian	natd \
6838653Sgpalmer	newfs \
6938653Sgpalmer	newfs_msdos \
70100636Speter	nfsiod \
7138653Sgpalmer	nologin \
7238653Sgpalmer	nos-tun \
73126756Smlaier	${_pfctl} \
74126756Smlaier	${_pflogd} \
7538653Sgpalmer	ping \
76124587Sru	${_ping6} \
7738653Sgpalmer	quotacheck \
78105762Sscottl	raidctl \
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 \
96124587Sru	${_vinum}
9710855Sjoerg
98119506Sphk.if !defined(NOATM)
99124587Sru_atm=		atm
100119506Sphk.endif
101119506Sphk
102111202Sobrien.if !defined(NO_CXX)
103124587Sru_devd=		devd
104111202Sobrien.endif
105111202Sobrien
10692868Sru.if !defined(NO_IPFILTER)
107124587Sru_ipf=		ipf
108124587Sru_ipfs=		ipfs
109124601Sru_ipfstat=	ipfstat
110124587Sru_ipmon=		ipmon
111124587Sru_ipnat=		ipnat
11292868Sru.endif
11392868Sru
114126756Smlaier.if !defined(NO_PF)
115126756Smlaier_pfctl=		pfctl
116126756Smlaier_pflogd=	pflogd
117126756Smlaier.endif
118126756Smlaier
119119506Sphk.if !defined(NOINET6)
120124587Sru_ip6fw=		ip6fw
121124587Sru_ping6=		ping6
122119506Sphk.endif
123119506Sphk
124119553Sphk.if !defined(NO_VINUM)
125124587Sru_vinum=		vinum
126119553Sphk.endif
127119553Sphk
12885954Speter.if ${MACHINE_ARCH} == "i386"
129124587Sru.if ${MACHINE} == "i386"
130124587Sru_fdisk=		fdisk
131124587Sru.elif ${MACHINE} == "pc98"
132124587Sru_fdisk_pc98=	fdisk_pc98
13344317Sjkh.endif
134124587Sru_sconfig=	sconfig
13586032Speter.endif
13644317Sjkh
137124587Sru.if ${MACHINE_ARCH} == "amd64"
138124587Sru_fdisk=		fdisk
139124587Sru_gpt=		gpt
14038458Sjb.endif
14138458Sjb
142124587Sru.if ${MACHINE_ARCH} == "ia64"
143124587Sru_fdisk=		fdisk
144124587Sru_gpt=		gpt
145124587Sru_mca=		mca
146115110Speter.endif
147115110Speter
1481558Srgrimes.include <bsd.subdir.mk>
149