Makefile revision 128802
11558Srgrimes#	@(#)Makefile	8.5 (Berkeley) 3/31/94
250476Speter# $FreeBSD: head/sbin/Makefile 128802 2004-05-01 18:17:23Z marcel $
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	nos-tun \
72126756Smlaier	${_pfctl} \
73126756Smlaier	${_pflogd} \
7438653Sgpalmer	ping \
75124587Sru	${_ping6} \
7638653Sgpalmer	quotacheck \
7798187Sgordon	rcorder \
7838653Sgpalmer	reboot \
7938653Sgpalmer	restore \
8038653Sgpalmer	route \
8138653Sgpalmer	routed \
8255163Sshin	rtsol \
8393651Smarcel	savecore \
84124587Sru	${_sconfig} \
8538653Sgpalmer	shutdown \
8638653Sgpalmer	slattach \
8741061Sbde	spppcontrol \
8838653Sgpalmer	startslip \
89116473Sphk	sunlabel \
9085469Sru	swapon \
9146878Sobrien	sysctl \
9238653Sgpalmer	tunefs \
93124587Sru	umount \
94124587Sru	${_vinum}
9510855Sjoerg
96119506Sphk.if !defined(NOATM)
97124587Sru_atm=		atm
98119506Sphk.endif
99119506Sphk
100111202Sobrien.if !defined(NO_CXX)
101124587Sru_devd=		devd
102111202Sobrien.endif
103111202Sobrien
10492868Sru.if !defined(NO_IPFILTER)
105124587Sru_ipf=		ipf
106124587Sru_ipfs=		ipfs
107124601Sru_ipfstat=	ipfstat
108124587Sru_ipmon=		ipmon
109124587Sru_ipnat=		ipnat
11092868Sru.endif
11192868Sru
112126756Smlaier.if !defined(NO_PF)
113126756Smlaier_pfctl=		pfctl
114126756Smlaier_pflogd=	pflogd
115126756Smlaier.endif
116126756Smlaier
117119506Sphk.if !defined(NOINET6)
118124587Sru_ip6fw=		ip6fw
119124587Sru_ping6=		ping6
120119506Sphk.endif
121119506Sphk
122119553Sphk.if !defined(NO_VINUM)
123124587Sru_vinum=		vinum
124119553Sphk.endif
125119553Sphk
12685954Speter.if ${MACHINE_ARCH} == "i386"
127124587Sru.if ${MACHINE} == "i386"
128124587Sru_fdisk=		fdisk
129124587Sru.elif ${MACHINE} == "pc98"
130124587Sru_fdisk_pc98=	fdisk_pc98
13144317Sjkh.endif
132124587Sru_sconfig=	sconfig
13386032Speter.endif
13444317Sjkh
135124587Sru.if ${MACHINE_ARCH} == "amd64"
136124587Sru_fdisk=		fdisk
13738458Sjb.endif
13838458Sjb
139124587Sru.if ${MACHINE_ARCH} == "ia64"
140124587Sru_fdisk=		fdisk
141124587Sru_mca=		mca
142115110Speter.endif
143115110Speter
144128802Smarcel.if ${MACHINE_ARCH} != "sparc64"
145128802Smarcel_gpt=		gpt
146128802Smarcel.endif
147128802Smarcel
1481558Srgrimes.include <bsd.subdir.mk>
149