Makefile revision 133270
11558Srgrimes#	@(#)Makefile	8.5 (Berkeley) 3/31/94
250476Speter# $FreeBSD: head/sbin/Makefile 133270 2004-08-07 16:16:59Z le $
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 \
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 \
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
13938458Sjb.endif
14038458Sjb
141124587Sru.if ${MACHINE_ARCH} == "ia64"
142124587Sru_fdisk=		fdisk
143124587Sru_mca=		mca
144115110Speter.endif
145115110Speter
146128802Smarcel.if ${MACHINE_ARCH} != "sparc64"
147128802Smarcel_gpt=		gpt
148128802Smarcel.endif
149128802Smarcel
1501558Srgrimes.include <bsd.subdir.mk>
151